setup a basic transactions home component to work on

This commit is contained in:
sam-keen 2022-02-26 22:22:31 +00:00 committed by Dexter Edwards
parent 67dc1bfbf1
commit e467344a4d
4 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
interface TxsProps {
data: string | undefined;
}
export const Txs = ({ data }: TxsProps) => {
return <>Blah</>;
};