(initialValue = initialText)
| 1 | import { useState } from "react"; |
| 2 | import { initialText } from "./InitialText.js"; |
| 3 | const useText = (initialValue = initialText) => { |
| 4 | const [state, setState] = useState(initialValue); |
| 5 | return [state, setState]; |
| 6 | }; |
| 7 | export default useText; |