Add table and menu components

This commit is contained in:
2023-10-24 11:37:29 +07:00
parent 52c3e28fbc
commit 9918c7c3a4
10 changed files with 305 additions and 0 deletions
@@ -0,0 +1,8 @@
import { createContext } from 'react';
// Interfaces
import { IMenusContext } from '../globals/interfaces';
const MenusContext = createContext<IMenusContext>({});
export default MenusContext;