open-codetree / pages /index.tsx
matt HOFFNER
remove header for more screen real estate
8eb7b1d
raw
history blame
179 Bytes
import React from "react";
import Playground from "../components/Playground";
const Index = () => {
return (
<>
<Playground />
</>
);
};
export default Index;