import { Component, createEffect, createSignal, Index, onMount, } from "solid-js"; import type { Entry, Category } from "../content"; import { ListItem } from "./list-item"; import { List } from "~/components/list"; import { Hero } from "~/components/hero"; import css from "./overview.module.css"; type OverviewProps = { highlights: Entry[]; categories: Category[]; }; export const Overview: Component = (props) => { return (
{(category) => ( {(entry) => } )}
); };