Skip to content

Commit

Permalink
feat: assets table (#233)
Browse files Browse the repository at this point in the history
* Quick commit 2025-01-08 19:23:46

* Quick commit 2025-01-08 19:26:10

* Quick commit 2025-01-08 19:31:37

* Quick commit 2025-01-08 19:40:40

* Quick commit 2025-01-08 20:15:00

* Quick commit 2025-01-08 20:24:34

* Quick commit 2025-01-08 20:30:17

* Quick commit 2025-01-09 14:04:40

* Quick commit 2025-01-09 14:06:51

* fix: table styling

* Quick commit 2025-01-10 17:33:52

* Quick commit 2025-01-10 17:37:51

* fix: address pr feedback

* fix: mobile layout

* Quick commit 2025-01-10 18:47:08

* Quick commit 2025-01-14 14:43:55

* Quick commit 2025-01-14 15:08:44

* Quick commit 2025-01-14 15:19:07

* Quick commit 2025-01-14 15:20:45

* Quick commit 2025-01-14 15:21:09
  • Loading branch information
vacekj authored Jan 14, 2025
1 parent 2d565ed commit e10e389
Show file tree
Hide file tree
Showing 3 changed files with 458 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,6 @@ tsconfig.tsbuildinfo
# ignore database CA certificate, required for some db backends
ca-cert.pem
*.pem

# eslint
.eslintcache
7 changes: 6 additions & 1 deletion src/pages/portfolio/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { XCircle } from 'lucide-react';
import { Button } from '@penumbra-zone/ui/Button';
import { Text } from '@penumbra-zone/ui/Text';
import { Density } from '@penumbra-zone/ui/Density';
import { AssetsTable } from './ui/assets-table';

interface PortfolioPageProps {
isMobile: boolean;
Expand Down Expand Up @@ -53,5 +54,9 @@ function MobilePortfolioPage() {
}

function DesktopPortfolioPage() {
return 'Hi from desktop!';
return (
<div className='sm:container mx-auto py-8'>
<AssetsTable />
</div>
);
}
Loading

0 comments on commit e10e389

Please sign in to comment.