XeNote/pages/playground/index.tsx

15 lines
245 B
TypeScript
Raw Normal View History

2024-01-07 18:05:04 +00:00
import Head from 'next/head'
2024-01-01 06:30:19 +00:00
export default function Home() {
return (
<>
2024-01-01 06:30:19 +00:00
<Head>
<title>🛝 Playground</title>
2024-01-01 06:30:19 +00:00
</Head>
2024-01-14 20:03:45 +00:00
<h1>Playground</h1>
<article>I may play with some ideas here</article>
</>
2024-01-01 06:30:19 +00:00
)
}