initial work on exchanges page
This commit is contained in:
parent
3f5bbc6345
commit
d7780e9684
18 changed files with 822 additions and 41 deletions
16
apps/web/src/features/exchanges/ExchangesPage.tsx
Normal file
16
apps/web/src/features/exchanges/ExchangesPage.tsx
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import { ExchangesTable } from './components/ExchangesTable';
|
||||
|
||||
export function ExchangesPage() {
|
||||
return (
|
||||
<div className="space-y-6">
|
||||
<div>
|
||||
<h1 className="text-lg font-bold text-text-primary mb-2">Exchange Management</h1>
|
||||
<p className="text-text-secondary text-sm">
|
||||
Configure and manage master exchanges with their data sources and providers.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<ExchangesTable />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue