Spaces:
Paused
Paused
| import React from "react"; | |
| import Playground from "../components/Playground"; | |
| import { Header } from "../components/Header"; | |
| const Index = () => { | |
| return ( | |
| <> | |
| <Header /> | |
| <Playground /> | |
| </> | |
| ); | |
| }; | |
| export default Index; | |