mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
made lab use provider and context
This commit is contained in:
parent
cb314e9f8d
commit
96f1529f2b
9 changed files with 129 additions and 56 deletions
13
src/pages/lab.tsx
Normal file
13
src/pages/lab.tsx
Normal file
|
@ -0,0 +1,13 @@
|
|||
import React, { VFC } from 'react';
|
||||
import { LabLayout } from '~/layouts/LabLayout';
|
||||
import { LabProvider } from '~/utils/providers/LabProvider';
|
||||
|
||||
interface LabPageProps {}
|
||||
|
||||
const LabPage: VFC<LabPageProps> = () => (
|
||||
<LabProvider>
|
||||
<LabLayout />
|
||||
</LabProvider>
|
||||
);
|
||||
|
||||
export default LabPage;
|
Loading…
Add table
Add a link
Reference in a new issue