Skip to content

Commit 00cf48e

Browse files
committed
fix: add NotificationProvider to App component
1 parent dab3b87 commit 00cf48e

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/App.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
import { MainLayout } from '@components/Layout/MainLayout'
2+
import { NotificationProvider } from '@components/Notification/Notification'
23

34
function App() {
4-
return <MainLayout />
5+
return (
6+
<>
7+
<MainLayout />
8+
<NotificationProvider />
9+
</>
10+
)
511
}
612

713
export default App

0 commit comments

Comments
 (0)