1.0.6 • Published 4 years ago

@blogmail/react v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Node.js CI Node.js Package npm version

@blogmail/react

This project provides a React component for integrating blogmail.

Usage

npm install @blogmail/react

or

yarn add @blogmail/react

Minimal example

import React from "react"
import ReactDOM from "react-dom"
import Blogmail from "@blogmail/react"

const newsletterId = "newsletterId"

const App = () => <Blogmail newsletterId={newsletterId} />

ReactDOM.render(<App />, document.body)

See the example dir for a complete example based on react-create-app.