import { useState } from "react"; import { ChooseArt } from "./pages/ChooseArt"; import { Paint } from "./pages/Paint"; export const App: React.FC = () => { const [chosenArt, setChosenArt] = useState(undefined); if (chosenArt === undefined) { return } return }