This project provides a React component for integrating blogmail.
npm install @blogmail/react
or
yarn add @blogmail/react
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.