Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 499 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 499 Bytes

hypernova-aphrodite

Aphrodite bindings for Hypernova.

Install

npm install hypernova-aphrodite

Usage

Here's how use use it in your module:

import { renderReactWithAphrodite } from 'hypernova-aphrodite';
import MyComponent from './src/MyComponent.jsx';

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