1- import " ./App.css" ;
2- import Header from " ./app/components/navigation/Header" ;
3- import { Outlet } from " react-router-dom" ;
4- import { ToastContainer } from " react-toastify" ;
5- import SideBar from " ./app/components/navigation/SideBar" ;
6- import { useState } from " react" ;
7- import { useAutoSignin } from " ./hooks/useAutoSignIn" ;
1+ import ' ./App.css' ;
2+ import Header from ' ./app/components/navigation/Header' ;
3+ import { Outlet } from ' react-router-dom' ;
4+ import { ToastContainer } from ' react-toastify' ;
5+ import SideBar from ' ./app/components/navigation/SideBar' ;
6+ import { useState } from ' react' ;
7+ import { useAutoSignin } from ' ./hooks/useAutoSignIn' ;
88
9- import " react-toastify/dist/ReactToastify.css" ;
10- import " @bcgov/design-tokens/css/variables.css" ;
11- import " @bcgov/bc-sans/css/BC_Sans.css" ;
9+ import ' react-toastify/dist/ReactToastify.css' ;
10+ import ' @bcgov/design-tokens/css/variables.css' ;
11+ import ' @bcgov/bc-sans/css/BC_Sans.css' ;
1212
1313function App ( ) {
1414 const [ isSidebarExpanded , setIsSidebarExpanded ] = useState ( false ) ;
@@ -29,14 +29,14 @@ function App() {
2929 < Header />
3030 < div className = "container m-0 p-0" >
3131 < div
32- className = { `sidebar-container display-from-medium ${ isSidebarExpanded ? " expanded" : "" } ` }
32+ className = { `sidebar-container display-from-medium ${ isSidebarExpanded ? ' expanded' : '' } ` }
3333 onMouseEnter = { handleSidebarToggle }
3434 onMouseLeave = { handleSidebarToggle }
3535 >
3636 < SideBar />
3737 </ div >
3838 < div
39- className = { `p-0 main-content-container ${ isSidebarExpanded ? " shifted" : "" } ` }
39+ className = { `p-0 main-content-container ${ isSidebarExpanded ? ' shifted' : '' } ` }
4040 >
4141 < Outlet />
4242 </ div >
0 commit comments