mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw-ui.git
synced 2025-10-30 18:27:53 +00:00
[WIFI-11223] Migrating to prov-ui style
Signed-off-by: Charles <charles.bourque96@gmail.com>
This commit is contained in:
18
src/layout/MainPanel.tsx
Normal file
18
src/layout/MainPanel.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import React from 'react';
|
||||
import { Box, LayoutProps, useStyleConfig } from '@chakra-ui/react';
|
||||
|
||||
interface Props extends LayoutProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
const MainPanel: React.FC<Props> = ({ children, ...props }) => {
|
||||
const styles = useStyleConfig('MainPanel');
|
||||
|
||||
return (
|
||||
<Box __css={styles} mb="16px" {...props}>
|
||||
{children}
|
||||
</Box>
|
||||
);
|
||||
};
|
||||
|
||||
export default MainPanel;
|
||||
Reference in New Issue
Block a user