You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
797 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import ReactDOM from 'react-dom/client';
import './index.css';
import reportWebVitals from './reportWebVitals';
import './style/style.css';
import Header from './components/Header';
import Navigation from './components/Navigation';
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
);
root.render(
<div>
<div className='app-wrapper'>
<div className='app-header'>
<Header/>
</div>
<div className='app-navigation'>
<Navigation/>
</div>
<div className='app-content'>
контент
</div>
</div>
</div>
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();

Powered by TurnKey Linux.