feat: add toast
Docker Build and Push / build-and-push (push) Successful in 6m42s

This commit is contained in:
2026-03-01 21:55:00 +07:00
parent d339f41ced
commit 2754c59768
8 changed files with 171 additions and 7 deletions
+4 -1
View File
@@ -8,6 +8,7 @@ import {
} from "react-router";
import type { Route } from "./+types/root";
import { AuthProvider } from "@/app/context/auth-context";
import { ToastProvider } from "@/app/context/toast-context";
import "./app.css";
export const links: Route.LinksFunction = () => [
@@ -44,7 +45,9 @@ export function Layout({ children }: { children: React.ReactNode }) {
export default function App() {
return (
<AuthProvider>
<Outlet />
<ToastProvider>
<Outlet />
</ToastProvider>
</AuthProvider>
);
}