2020-01-03 00:01:16 +01:00

19 lines
301 B
JavaScript

import React from 'react'
import './App.css'
import { Canvas } from './components.js/Canvas'
export const App = () => {
return (
<>
<header>
<h1>Ebermergen</h1>
</header>
<main>
<Canvas />
</main>
<footer>This is the footer</footer>
</>
)
}