UNPKG

@allurereport/web-awesome

Version:

The static files for Allure Awesome Report

10 lines (6 loc) 241 B
import { signal } from "@preact/signals"; export type TreeSwitcher = "suites" | "categories"; export const currentTree = signal<TreeSwitcher>("suites"); export const setCurrentTree = (tab: TreeSwitcher) => { currentTree.value = tab; };