databag/app/mobile/src/root/useRoot.hook.js

21 lines
439 B
JavaScript
Raw Normal View History

2022-09-07 21:21:45 +00:00
import { useContext, useState, useEffect } from 'react';
import { AppContext } from 'context/AppContext';
import { useNavigate } from 'react-router-dom'
export function useRoot() {
const [state, setState] = useState({});
const app = useContext(AppContext);
const navigate = useNavigate();
const updateState = (value) => {
setState((s) => ({ ...s, ...value }));
}
const actions = {
};
return { state, actions };
}