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.
importReactDOMfrom'react-dom/client';
import'./index.css';
importreportWebVitalsfrom'./reportWebVitals';
import'./style/style.css';
importHeaderfrom'./components/Header';
importNavigationfrom'./components/Navigation';
constroot=ReactDOM.createRoot(
document.getElementById('root')asHTMLElement
);
root.render(
<div>
<divclassName='app-wrapper'>
<divclassName='app-header'>
<Header/>
</div>
<divclassName='app-navigation'>
<Navigation/>
</div>
<divclassName='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