import { useSignal } from '@preact/signals' import Counter from '../islands/Counter.tsx' export default function Home() { const count = useSignal(3) return (
the Fresh logo: a sliced lemon dripping with juice

Welcome to Fresh

Try updating this message in the ./routes/index.tsx file, and refresh.

) }