Nova React Bridge
Install
npm install nova-react-bridge
Usage
The Nova component requires the props name and data
- nameis the registered Nova View.
- datais the data necessary to render the view.
import { Nova } from 'nova-react-bridge'
const Page = () => (
  <div>
    <Nova 
      name="NavBar"
      data={{ brand: 'Ara Framework', links: [{ url: 'https://github.com/ara-framework', text: "Github" }]}}
    />
  </div>
)
