:school_satchel: Print
yarn add @bwnl/print
# Or
npm install @bwnl/print --save
import * as React from 'react';
import { printReactElementAsBody } from "@bwnl/print";
const print = () => {
printReactElementAsBody(
(<div>Hello There</div>),
);
};
For more example, visit stories
directory within the repository.