diff --git a/assets/react/components/LearningCircles/Subtitle.jsx b/assets/react/components/LearningCircles/Subtitle.jsx deleted file mode 100644 index da364570..00000000 --- a/assets/react/components/LearningCircles/Subtitle.jsx +++ /dev/null @@ -1,30 +0,0 @@ -import React from 'react' -import queryString from 'query-string'; - -class Subtitle extends React.Component { - constructor(props) { - super(props) - const parsedParams = queryString.parse(window.location.search); - const team = parsedParams.team; - this.state = { team } - } - - render() { - if (Boolean(this.state.team)) { - return ( -
-

Sign up below for a learning circle organized by {this.state.team}

-

Go to the global learning circles search page

-
- ) - } - - return ( -
-

Learning circles are study groups for people who want to take online classes together and in-person. Sign up below for a learning circle in your area, or create your own!

-
- ) - } -} - -export default Subtitle \ No newline at end of file