diff --git a/src/App.tsx b/src/App.tsx index aeaa96f..baa3960 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,13 +2,10 @@ import "./styles/reset.css"; import "./styles/App.css"; import { Outlet } from "react-router"; import { Link } from "react-router"; +import { useGuides } from "./lib/contexts/guide.context"; function App() { - const guides = [ - { id: 1, title: "Guide 1" }, - { id: 2, title: "Guide 2" }, - { id: 3, title: "Guide 3" }, - ]; + const { guides } = useGuides(); return ( <> @@ -18,7 +15,6 @@ function App() {