aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/common/tab/Tabs.tsx
blob: 29ebcbd8238dcb23093e1f82476291e49618594b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import React from "react";

import { I18nText } from "@/common";

export interface Tab {
  name: string;
  text: I18nText;
  link?: string;
  onClick?: () => void;
}

export interface TabsProps {
  activeTabName?: string;
  tabs: Tab[];
}

export default function Tabs(props: TabsProps): React.ReactElement | null {
  return <div></div>;
}