mirror of
https://github.com/empayre/fleet.git
synced 2024-11-08 01:38:57 +00:00
5be54a72cf
* added global teams dropdown * added teams dropdown * created tabs wrapper component * comment out software table for now * lint fixes * added changes file * removed test data * fixed permissions * fixed scroll behavior for test with sticky header * lint fixes
18 lines
409 B
TypeScript
18 lines
409 B
TypeScript
import React from "react";
|
|
|
|
interface ITabsWrapperProps {
|
|
children: React.ReactChild | React.ReactChild[];
|
|
}
|
|
|
|
/*
|
|
* This component exists so we can unify the styles
|
|
* and overwrite the loaded React Tabs styles.
|
|
*/
|
|
const baseClass = "component__tabs-wrapper";
|
|
|
|
const TabsWrapper = ({ children }: ITabsWrapperProps) => {
|
|
return <div className={baseClass}>{children}</div>;
|
|
};
|
|
|
|
export default TabsWrapper;
|