import { useState } from "react"; import useCreateTextImage from "./useCreateTextImage"; function App() { const [text, setText] = useState(''); const imgRef = useCreateTextImage(text, 'black', 'white', { width: 400, height: 200 }); return ( <>