diff --git a/src/App.tsx b/src/App.tsx index bf2a6a9..07314a1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,5 +1,7 @@ import { useState, useEffect, useCallback } from "react"; import { getCurrentWindow } from "@tauri-apps/api/window"; +import { AnimatePresence, motion } from "framer-motion"; +import { springs, fadeSlideLeft, fadeSlideRight } from "@/lib/motion"; import { useAppStore } from "@/stores/app-store"; import { useBoardStore } from "@/stores/board-store"; import { AppShell } from "@/components/layout/AppShell"; @@ -73,7 +75,33 @@ export default function App() { return ( <> - {view.type === "board-list" ? : } + + {view.type === "board-list" ? ( + + + + ) : ( + + + + )} +