import { Text } from "@allurereport/web-components"; import { type ComponentChildren } from "preact"; import { currentTab, setCurrentTab } from "@/stores/tabs"; import * as styles from "./styles.scss"; export const Tabs = (props: { children: ComponentChildren; initialTab?: string }) => { if (props.initialTab) { setCurrentTab(props.initialTab); } return <>{props.children}>; }; export const TabsList = (props: { children: ComponentChildren }) => { return