fix style issue

这个提交包含在:
Sven Czarnian
2022-11-05 02:29:26 +01:00
父节点 8c6d6ae5e2
当前提交 c500ddbe00

19
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>
</>
);
}