diff --git a/dont_fret/web/components.py b/dont_fret/web/components.py index 16ce3b0..feb3492 100644 --- a/dont_fret/web/components.py +++ b/dont_fret/web/components.py @@ -1,6 +1,7 @@ from __future__ import annotations import re +from pathlib import Path from typing import Callable, Optional, Type import solara @@ -10,6 +11,11 @@ import dont_fret.web.state as state +@solara.component +def FRETStyle(): + solara.Style(Path(__file__).parent / "style.css") + + @solara.component def Snackbar(): bar = state.snackbar.value