diff --git a/frontend/src/components/Slingshot.tsx b/frontend/src/components/Slingshot.tsx index 13ac45e..1ddee89 100644 --- a/frontend/src/components/Slingshot.tsx +++ b/frontend/src/components/Slingshot.tsx @@ -12,7 +12,7 @@ export type Ammo = { export default function Slingshot(props: { ammo: Ammo }) { return ( -
+

{props.ammo.title}

@@ -21,6 +21,6 @@ export default function Slingshot(props: { ammo: Ammo }) { {props.ammo.date}

-
+ ) as JSXElement; }; diff --git a/frontend/src/routes/blog.tsx b/frontend/src/routes/blog.tsx index 25f8efd..71b1ecd 100644 --- a/frontend/src/routes/blog.tsx +++ b/frontend/src/routes/blog.tsx @@ -22,10 +22,10 @@ export default function Blog() { const { ammoBox } = useRouteData(); return ( - + ) as JSXElement; }; diff --git a/frontend/src/routes/index.tsx b/frontend/src/routes/index.tsx index 247f288..1a0870e 100644 --- a/frontend/src/routes/index.tsx +++ b/frontend/src/routes/index.tsx @@ -23,10 +23,10 @@ export default function Home() { const { ammoBox } = useRouteData(); return ( - + ) as JSXElement; }; diff --git a/frontend/src/routes/projects.tsx b/frontend/src/routes/projects.tsx index 008fb6f..b33533e 100644 --- a/frontend/src/routes/projects.tsx +++ b/frontend/src/routes/projects.tsx @@ -23,10 +23,10 @@ export default function Projects() { const { ammoBox } = useRouteData(); return ( -
    +
    - {(projects) =>
  • } + {(projects) => }
    -
+ ) as JSXElement; };