Skip to content

v8.0.2

Choose a tag to compare

@sergeysova sergeysova released this 17 Oct 19:41

Features

  • 9703335 add support for styled-components v4
import React from 'react'
import { Normalize } from 'styled-normalize'

import { App } from './app'

const Root = () => (
  <React.Fragment>
    <Normalize />
    <App />
  </React.Fragment>
)