fix
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { getNavigations, getNavigationsValue } from '@ijl/cli';
|
||||
import { getNavigations, getNavigationsValue } from '@brojs/cli';
|
||||
import pkg from '../../package.json';
|
||||
|
||||
const baseUrl = getNavigationsValue(`${(pkg as any).name}.main`);
|
||||
|
||||
17
src/app.tsx
17
src/app.tsx
@@ -1,9 +1,16 @@
|
||||
import React from 'react';
|
||||
import { BrowserRouter } from 'react-router-dom';
|
||||
|
||||
import { Dashboard } from './dashboard';
|
||||
|
||||
import './index.css'
|
||||
|
||||
const App = () => {
|
||||
return (
|
||||
<h1>Hello world для проекта - enterfront</h1>
|
||||
);
|
||||
};
|
||||
return(
|
||||
<BrowserRouter>
|
||||
<Dashboard />
|
||||
</BrowserRouter>
|
||||
)
|
||||
}
|
||||
|
||||
export default App;
|
||||
export default App;
|
||||
|
||||
Reference in New Issue
Block a user