MCPcopy
hub / github.com/realdennis/md2pdf / useText

Function useText

src/App/Container/Hooks/useText.js:3–6  ·  view source on GitHub ↗
(initialValue = initialText)

Source from the content-addressed store, hash-verified

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

Callers 1

useText.test.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected