adding pilot
This commit is contained in:
@@ -4,7 +4,6 @@ import {
|
|||||||
Button,
|
Button,
|
||||||
Card,
|
Card,
|
||||||
PlusIcon,
|
PlusIcon,
|
||||||
DatePicker,
|
|
||||||
Typography
|
Typography
|
||||||
} from '@noahspan/noahspan-components';
|
} from '@noahspan/noahspan-components';
|
||||||
|
|
||||||
@@ -13,11 +12,9 @@ const Pilots: React.FC<unknown> = () => {
|
|||||||
const onOpenCloseDrawer = () => {
|
const onOpenCloseDrawer = () => {
|
||||||
setIsDrawerOpen(!isDrawerOpen);
|
setIsDrawerOpen(!isDrawerOpen);
|
||||||
};
|
};
|
||||||
const [date, setDate] = useState();
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Card className="mt-6">
|
<Card className="mt-6 px-6">
|
||||||
<div className="px-6">
|
|
||||||
<Typography variant="h3">Pilots</Typography>
|
<Typography variant="h3">Pilots</Typography>
|
||||||
<Button
|
<Button
|
||||||
className="flex items-center gap-3"
|
className="flex items-center gap-3"
|
||||||
@@ -33,7 +30,6 @@ const Pilots: React.FC<unknown> = () => {
|
|||||||
isDrawerOpen={isDrawerOpen}
|
isDrawerOpen={isDrawerOpen}
|
||||||
onOpenCloseDrawer={onOpenCloseDrawer}
|
onOpenCloseDrawer={onOpenCloseDrawer}
|
||||||
/>
|
/>
|
||||||
</div>
|
|
||||||
</Card>
|
</Card>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -3,6 +3,9 @@
|
|||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
@layer base {
|
@layer base {
|
||||||
|
body {
|
||||||
|
@apply bg-black;
|
||||||
|
}
|
||||||
h1 {
|
h1 {
|
||||||
@apply text-2xl font-bold leading-7 text-gray-900;
|
@apply text-2xl font-bold leading-7 text-gray-900;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user