import { Grid } from '@mui/material'; import { FC } from 'react'; import ContainedButton, { ContainedButtonProps } from '../ContainedButton'; import { Panel, PanelHeader } from '../Panels'; import { HeaderText } from '../Text'; type SimpleOperationsPanelProps = { strikerHostName: string; }; const StretchedButton: FC = (props) => ( ); const SimpleOperationsPanel: FC = ({ strikerHostName, }) => ( Update system Enable "Install target" Reboot Shutdown ); export default SimpleOperationsPanel;