generated from template/astro-template
feat: add ai-html
This commit is contained in:
9
src/apps/mark/manager/Provider.tsx
Normal file
9
src/apps/mark/manager/Provider.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { StoreContextProvider } from '@kevisual/store/react';
|
||||
import { createManagerStore } from './store/index';
|
||||
export const ManagerProvider = ({ children, id }: { children: React.ReactNode; id?: string }) => {
|
||||
return (
|
||||
<StoreContextProvider id={id || 'mark-manager'} stateCreator={createManagerStore}>
|
||||
{children}
|
||||
</StoreContextProvider>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user