Skip to content

Instantly share code, notes, and snippets.

@jonasantonelli
Last active July 12, 2021 23:08
Show Gist options
  • Save jonasantonelli/b5abc98600699c74b03a35091fd88c9f to your computer and use it in GitHub Desktop.
Save jonasantonelli/b5abc98600699c74b03a35091fd88c9f to your computer and use it in GitHub Desktop.
Using Styled Component
import React from 'react';
import ReactDOM from 'react-dom';
import UnorderedList from './UnorderedList';
const App = () => (
<UnorderedList>
<li>Item X</li>
<li>Item Y</li>
</UnorderedList>
);
ReactDOM.render(<App />, document.getElementById('root'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment