Skip to content

Instantly share code, notes, and snippets.

@davidgilbertson
Created May 19, 2019 01:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidgilbertson/121f5cb9e9106977173acd6bc6059c7c to your computer and use it in GitHub Desktop.
Save davidgilbertson/121f5cb9e9106977173acd6bc6059c7c to your computer and use it in GitHub Desktop.
import React from 'react';
import Button from '../../Button/Button';
import { LINKS, STRINGS } from '../../../utils/constants';
import styles from './App.module.css';
function App() {
return (
<div className={styles.App}>
<Button>
{STRINGS.HELLO}
</Button>
<a href={LINKS.HELP}>Learn more</a>
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment