import * as React from 'react'; import Box from '@mui/material/Box'; import Stack from '@mui/material/Stack'; import Typography from '@mui/material/Typography'; export interface SplitLayoutProps { children: React.ReactNode; } export function SplitLayout({ children }: SplitLayoutProps): React.JSX.Element { return ( Welcome to Devias Kit PRO A professional template that comes with ready-to-use MUI components developed with one common goal in mind, help you build faster & beautiful applications. {children} ); }