1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

completely removed flow-related sagas

This commit is contained in:
Fedor Katurov 2022-01-04 15:08:20 +07:00
parent 5f3accee48
commit 38eedab3c2
26 changed files with 326 additions and 310 deletions

View file

@ -3,10 +3,11 @@ import { FlowLayout } from '~/layouts/FlowLayout';
import { useFlow } from '~/hooks/flow/useFlow';
import { FlowContextProvider } from '~/utils/context/FlowContextProvider';
import { SearchContextProvider } from '~/utils/context/SearchContextProvider';
import { observer } from 'mobx-react';
interface Props {}
const FlowPage: FC<Props> = () => {
const FlowPage: FC<Props> = observer(() => {
const { updates, nodes, heroes, recent, isFluid, toggleLayout, onChangeCellView } = useFlow();
return (
@ -22,6 +23,6 @@ const FlowPage: FC<Props> = () => {
</SearchContextProvider>
</FlowContextProvider>
);
};
});
export default FlowPage;