dashboard/src/components/Tabs/TabPanel.tsx

9 lines
226 B
TypeScript
Raw Normal View History

2021-09-27 12:17:33 +02:00
import React from 'react';
import { TabPanelProps } from './types';
export const TabPanel = ({ children, isActive }: TabPanelProps) => {
if (!isActive) return null;
return <div className="pt-8 pb-4">{children}</div>;
};