import { Button } from '@mui/material'; import { makeStyles } from '@mui/styles'; import './WssQuickCreate.css'; // WssQuickCreate is one of the few components that does NOT have getPConnect. // So, no need to extend PConnProps interface WssQuickCreateProps { // If any, enter additional props that only exist on this component heading: string; actions?: any[]; } const useStyles = makeStyles(theme => ({ quickLinkList: { backgroundColor: theme.palette.mode === 'dark' ? 'var(--app-background-color)' : 'var(--link-button-color)', color: 'var(--app-text-color)', borderRadius: '16px', border: '1px solid var(--app-primary-color)' } })); export default function WssQuickCreate(props: WssQuickCreateProps) { const { heading, actions } = props; const classes = useStyles(); return (

{heading}

); }