This commit is contained in:
Morten Olsen
2023-06-16 11:10:50 +02:00
commit bc0d501d98
163 changed files with 16458 additions and 0 deletions

12
packages/app/src/app.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { widgets } from '@refocus/widgets';
import { FocusProvider, Interface } from '@refocus/ui';
const App: React.FC = () => {
return (
<FocusProvider widgets={widgets as any}>
<Interface.App />
</FocusProvider>
);
};
export default App;

View File

@@ -0,0 +1,9 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './app';
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);

1
packages/app/src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
/// <reference types="vite/client" />