import { useState } from 'react'; export interface ChooseArtProps { art: string; } export const Paint: React.FC = ({ art: initArt }) => { const [art, setArt] = useState(initArt); return
{art}
; };