mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
import Layout from '@/components/layout/default.js'
|
|
|
|
function HomePage() {
|
|
return (
|
|
<Layout>
|
|
<div>Welcome to Neuxteventy.js!</div>
|
|
</Layout>
|
|
)
|
|
}
|
|
|
|
export default HomePage
|