freshter-logs/components/WithStyleSheet.tsx

16 lines
269 B
TypeScript
Raw Normal View History

2023-04-28 19:48:34 -04:00
import { Head } from "$fresh/runtime.ts";
export default function WithStyleSheet({
children = [],
href,
}: {
children?: any;
href: string;
}) {
return (
<Head>
<link rel="stylesheet" href={href}></link>
</Head>
);
}