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:
parent
5f3accee48
commit
38eedab3c2
26 changed files with 326 additions and 310 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue