I have a component and function. I have to export that function to use somewhere else.
const MyComponent = () => {
const [myState, setMyState] = useState();
}
const MyFunction() => {
//I want to access myState here
}
export {MyFunction}
export default MyComponent;