This commit is contained in:
2023-07-19 16:21:21 +01:00
parent 06b9dba09b
commit d292e658fc
23 changed files with 496 additions and 238 deletions

View File

@ -0,0 +1,6 @@
import "./FixedTabs.css";
import { ReactNode } from "react";
export function FixedTabs({ children }: { children: ReactNode }) {
return <div className="fixed-tabs">{children}</div>;
}