/* eslint-disable node/no-unsupported-features/es-syntax */
import React from 'react';
import styles from './index.module.css';

const App = () => (
  <div id="verify-red" className={styles.redText}>
    This text should be red.
  </div>
);

export default App;
/* eslint-enable node/no-unsupported-features/es-syntax */
