import React from 'react'; import Typography from '@mui/material/Typography'; import MuiLink from '@mui/material/Link'; import Button from '@mui/material/Button'; export default class Hero extends React.Component { constructor(props) { super(props); this.state = { show: true, }; } render() { return (

{this.props.heading}

{this.props.subheading}

); } }