Skip to content

Commit

Permalink
Build the Receive page
Browse files Browse the repository at this point in the history
  • Loading branch information
jessepinho committed Aug 10, 2024
1 parent 62611f3 commit a5082c8
Showing 1 changed file with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
import { AccountSelector } from '@repo/ui/AccountSelector';
import { Card } from '@repo/ui/Card';
import { FormField } from '@repo/ui/FormField';
import { getAddrByIndex } from '../../../../fetchers/address';

export const ReceivePage = () => {
return null;
return (
<Card.Stack>
<Card.Section>
<FormField label='Address'>
<AccountSelector getAddressByIndex={getAddrByIndex} />
</FormField>
</Card.Section>
</Card.Stack>
);
};

0 comments on commit a5082c8

Please sign in to comment.