gwcuva/gwc-website

View on GitHub
src/components/GirlsHooHack2021/JumpStart/Workshop.tsx

Summary

Maintainability
A
0 mins
Test Coverage
interface Props {
    name: string;
    date: string;
    detail: string;
}

function Workshop(props: Props): JSX.Element {
  return (
      <div className="pb-3">
        <h4 className="hack"><b>{props.name}</b></h4>
        <p><b>{props.date}</b></p>
        <p>{props.detail}</p>
      </div>
    );
  }
  
  export default Workshop;