mirror of
https://github.com/MaggieAppleton/digital-gardeners.git
synced 2024-11-21 17:09:45 +01:00
10 lines
168 B
JavaScript
10 lines
168 B
JavaScript
|
import Layout from "../components/Layout";
|
||
|
|
||
|
export default function Tutorials() {
|
||
|
return (
|
||
|
<Layout>
|
||
|
<div>hello</div>
|
||
|
</Layout>
|
||
|
);
|
||
|
}
|