Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 725 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 725 Bytes

hypernova-styled-components Build Status

Styled Components 💅 bindings for Hypernova.

Install

npm install hypernova-styled-components

Usage

Here's how use use it in your module:

import { renderReactWithStyledComponents } from 'hypernova-styled-components';
import MyComponent from './src/MyComponent.jsx';

export default renderReactWithStyledComponents(
  'MyComponent.hypernova.js', // this file's name (or really any unique name)
  MyComponent,
);