12 lines
199 B
TypeScript
12 lines
199 B
TypeScript
import Stickies from '../components/stickies';
|
|
|
|
const Home = () => {
|
|
return (
|
|
<div>
|
|
<h1>kohngrüti</h1>
|
|
<Stickies />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Home; |