diff options
author | crupest <crupest@outlook.com> | 2021-06-26 19:54:24 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-06-26 19:54:24 +0800 |
commit | c3f17f1dd1099c244e36d09b14c3e131d703830e (patch) | |
tree | 9f6b58f3bf16bcd119f22475625464537aa2b42b /FrontEnd/src/views/common/tab/Tabs.tsx | |
parent | a168336c0761b263ee5371218cbf6da236c0acce (diff) | |
download | timeline-c3f17f1dd1099c244e36d09b14c3e131d703830e.tar.gz timeline-c3f17f1dd1099c244e36d09b14c3e131d703830e.tar.bz2 timeline-c3f17f1dd1099c244e36d09b14c3e131d703830e.zip |
...
Diffstat (limited to 'FrontEnd/src/views/common/tab/Tabs.tsx')
-rw-r--r-- | FrontEnd/src/views/common/tab/Tabs.tsx | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/FrontEnd/src/views/common/tab/Tabs.tsx b/FrontEnd/src/views/common/tab/Tabs.tsx new file mode 100644 index 00000000..29ebcbd8 --- /dev/null +++ b/FrontEnd/src/views/common/tab/Tabs.tsx @@ -0,0 +1,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>; +} |