add additional embeds + routes

This commit is contained in:
horsefacts
2024-11-29 17:55:06 -05:00
committed by lucas-neynar
parent 9024500d13
commit 06395560df
7 changed files with 148 additions and 8 deletions

View File

@@ -6,8 +6,8 @@ const Demo = dynamic(() => import("~/components/Demo"), {
ssr: false,
});
export default function App() {
return (
<Demo />
);
export default function App(
{ title }: { title?: string } = { title: "Frames v2 Demo" }
) {
return <Demo title={title} />;
}