predefined styled-components to be used in React-app
npm install --save restyled-components
import React from 'react'
import { StyledButton } from 'restyled-components'
const App = () => {
return <StyledButton>Submit</StyledButton>
}
export default App