({ match }: Props)
| 8 | } |
| 9 | |
| 10 | const Support = ({ match }: Props) => { |
| 11 | if (match.location.pathname !== '/settings/support') return null |
| 12 | |
| 13 | return ( |
| 14 | <Content> |
| 15 | <div className="Subhead"> |
| 16 | <div className="Subhead-heading">Getting help</div> |
| 17 | </div> |
| 18 | |
| 19 | <p> |
| 20 | Have a problem or feedback to give? Send an email with your comments or questions to |
| 21 | eric.walker@gmail.com. |
| 22 | </p> |
| 23 | </Content> |
| 24 | ) |
| 25 | } |
| 26 | |
| 27 | export default Support |
nothing calls this directly
no outgoing calls
no test coverage detected