1 2 3 4 5 6 7 8 9 10 11
import { useState } from 'react'; export interface ChooseArtProps { art: string; } export const Paint: React.FC<ChooseArtProps> = ({ art: initArt }) => { const [art, setArt] = useState<string>(initArt); return <div>{art}</div>; };