Add POC menu abstraction

This commit is contained in:
Eric Bailey
2024-03-04 17:06:27 -06:00
parent 6c9d6f5b05
commit a496a380d3
8 changed files with 339 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import React from 'react'
import type {ContextType} from '#/components/Menu/types'
export const Context = React.createContext<ContextType>({
// @ts-ignore
control: null,
})