export default()

in src/frontend/src/components/SettingsHelp.js [4:22]


export default ({ show }) => {
  if (show) {
    return (
      <Alert variant="danger">
        There is an issue with your settings configuration. If you are running
        the front-end code from your local machine, you may need to follow{" "}
        <a
          href="https://github.com/aws-samples/amazon-transcribe-news-media-analysis/blob/master/CONTRIBUTING.md#working-with-the-web-ui"
          rel="noopener noreferrer"
          target="_blank"
        >
          this guide
        </a>
        .
      </Alert>
    );
  }
  return "";
};