add edge ui common project

This commit is contained in:
zizifn
2023-01-02 03:16:57 +08:00
committed by zizifn
parent d0202034b0
commit fed5ce3ad7
24 changed files with 373 additions and 75 deletions

View File

@@ -1,6 +1,7 @@
import { StrictMode } from 'react';
import * as ReactDOM from 'react-dom/client';
import App from './app/app';
// import App from './app/app';
import { EdgeApp } from 'edge-ui';
import './styles.css';
const root = ReactDOM.createRoot(
@@ -8,6 +9,6 @@ const root = ReactDOM.createRoot(
);
root.render(
<StrictMode>
<App />
<EdgeApp />
</StrictMode>
);