mirror of
https://github.com/cupcakearmy/fantus.git
synced 2024-11-01 13:04:34 +01:00
12 lines
222 B
TypeScript
12 lines
222 B
TypeScript
|
import React from 'react'
|
||
|
|
||
|
const Home = () => {
|
||
|
return <div className='center'>
|
||
|
<h2>works</h2>
|
||
|
<p>
|
||
|
in progress... lot of skratches lying around
|
||
|
</p>
|
||
|
</div>
|
||
|
}
|
||
|
|
||
|
export default Home
|