7 lines
134 B
TypeScript
7 lines
134 B
TypeScript
// Make the landing page the DApp page
|
|
import DappPage from './dapp/page';
|
|
|
|
export default function Home() {
|
|
return <DappPage />;
|
|
}
|