Removing unnecessary imports

This commit is contained in:
Jeff Avallone 2018-02-10 17:27:30 -05:00
parent 1576904f9c
commit 2377cb2497

View File

@ -2,13 +2,7 @@ import React from 'react';
import Message from './Message';
import GithubIcon from 'feather-icons/dist/icons/github.svg';
import DownloadIcon from 'feather-icons/dist/icons/download.svg';
import LinkIcon from 'feather-icons/dist/icons/link.svg';
import ChevronsDownIcon from 'feather-icons/dist/icons/chevrons-down.svg';
import ErrorIcon from 'feather-icons/dist/icons/alert-octagon.svg';
const App = () => <Message icon={ ErrorIcon } heading="React App">
const App = () => <Message heading="React App">
<p>Placeholder app content</p>
</Message>;