diff options
| author | Elizabeth Hunt <me@liz.coffee> | 2025-10-04 17:37:22 -0700 |
|---|---|---|
| committer | Elizabeth Hunt <me@liz.coffee> | 2025-10-04 17:37:22 -0700 |
| commit | 507c972ecafeceaf4f8962ad881f8fb50c9b86c1 (patch) | |
| tree | be89b29d1cb4924b70c32176c7c1f23dcaf65d85 /src/pages/Paint.tsx | |
| parent | c2503078307759860736b4467507abf1e68c326d (diff) | |
| download | ansicolor-507c972ecafeceaf4f8962ad881f8fb50c9b86c1.tar.gz ansicolor-507c972ecafeceaf4f8962ad881f8fb50c9b86c1.zip | |
paste art
Diffstat (limited to 'src/pages/Paint.tsx')
| -rw-r--r-- | src/pages/Paint.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/pages/Paint.tsx b/src/pages/Paint.tsx new file mode 100644 index 0000000..5284b26 --- /dev/null +++ b/src/pages/Paint.tsx @@ -0,0 +1,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>; +}; |
