diff --git a/src/public/components/CommitteeBox.tsx b/src/public/components/CommitteeBox.tsx new file mode 100644 index 0000000..f99340f --- /dev/null +++ b/src/public/components/CommitteeBox.tsx @@ -0,0 +1,29 @@ +import * as React from "react"; +import { Component } from "react"; + +interface CommitteeBoxProps { + boxTitle: string; + image: string; + description: string; +} + +export default class CommitteeBox extends Component { + constructor(props: CommitteeBoxProps) { + super(props); + this.state = {}; + } + + public render() { + return ( +
+
{this.props.boxTitle}
+
+ +
+
+ {this.props.description} +
+
+ ); + } +}