import React from "react"; import { NewComponent } from "./new-comp"; const Toast = () => { const [baconyes, baconno] = useBacon(); return
false
; }; const Button = ({ label, label2, onClick }) => { const useCustomHookInsideFunction = (what, arr) => { return [true, false]; }; const [on, setOn] = React.useState(false); React.useEffect(() => { console.log({ on }); }, [on]); // const [foo1, foo2] = useCustomHookInsideFunction(() => {}, [on]); return (
f
{label}12
); }; const Bacon = Button; export { Bacon, Bacon as Button }; const RefreshLike = () => {}; const useBacon = () => { return [1, 8]; };