blob: 5284b26dbc0569688dc604bcc0cb9248fda99d2c (
plain)
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>;
};
|