open-codetree / pages /index.tsx
matt HOFFNER
init
3c3f089
raw
history blame
243 Bytes
import React from "react";
import Playground from "../components/Playground";
import { Header } from "../components/Header";
const Index = () => {
return (
<>
<Header />
<Playground />
</>
);
};
export default Index;