chore: format all files

This commit is contained in:
Corbin Crutchley
2023-07-24 12:15:14 -07:00
parent 6e1a88e4f6
commit a29b995e1e
144 changed files with 4433 additions and 4203 deletions

View File

@@ -8,7 +8,7 @@ const chevron_down = await fs.readFile("src/icons/chevron_down.svg", "utf8");
interface HintProps {
title: string;
children: Node[];
};
}
/** @jsxImportSource hastscript */
export function Hint({ title, children }: HintProps): Element {
@@ -20,9 +20,7 @@ export function Hint({ title, children }: HintProps): Element {
{title}
</summary>
<div class="hint__content">
{children}
</div>
<div class="hint__content">{children}</div>
</details>
</div>
) as never;