summaryrefslogtreecommitdiffstats
path: root/client/src/admin/hocs/View.jsx
blob: 3c654c226d6e535d5d9a77abe679472910ad0d0c (plain) (blame)
1
2
3
4
5
6
7
8
9
import React, { useContext } from 'react';
import Context from '../context';

const View = (view) => {
  const { setView } = useContext(Context);
  return () => setView(view);
};

export default View;