浏览代码

fix style issue

Sven Czarnian 2 年之前
父节点
当前提交
c500ddbe00
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. 19 0
      src/components/airport.tsx

+ 19 - 0
src/components/airport.tsx

@@ -0,0 +1,19 @@
+import React, { useState } from 'react';
+import { TabView, TabPanel } from 'primereact/tabview';
+
+export const Airport: React.FC = () => {
+  const [activeIndex, setActiveIndex] = useState<number>(0);
+
+  return (
+    <>
+      <TabView activeIndex={activeIndex} onTabChange={(event) => setActiveIndex(event.index)} className='p-3'>
+        <TabPanel header='Create airport'>
+          CREATE AIRPORT
+        </TabPanel>
+        <TabPanel header='Manage airport'>
+          MANAGE AIRPORT
+        </TabPanel>
+      </TabView>
+    </>
+  );
+}