Reactjs – Is there a way to combine hooks together for reuse in similar components in react?
I have a react and next project which uses multiple pages with a similar structure. In each page we are using custom hooks to load data, so it looks something like: const theme = useTheme() const router = useRouter() const…