This commit is contained in:
Nikolai Petukhov
2024-09-20 16:10:14 +03:00
parent a482be764b
commit d7de0c4353
5 changed files with 1189 additions and 33 deletions

View File

@@ -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`);

View File

@@ -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;