tsconfig.json strictest

This commit is contained in:
2026-03-05 15:15:47 -06:00
parent 4664aa983d
commit 3071ae41e6
7 changed files with 27 additions and 18 deletions

View File

@@ -1,9 +1,9 @@
import React, {useState} from "react";
import {useState} from "react";
import {Link} from "../router/Link";
import {motion} from "framer-motion";
export function Links() {
const [links, setLinks] = useState(["About", "Articles"]);
const [links] = useState(["About", "Articles"]);
return <div className="links">
{ links.map(() => /* add spacers for flexbox */ <div/> )}