1 2 3 4 5 6 7 8 9 10
import React from "react"; import { Button } from "./components"; export function App() { return ( <div> <Button /> </div> ); }