react-notion-x-custom
TypeScript icon, indicating that this package has built-in type declarations

6.6.18 • Public • Published

React Notion X

React Notion X Custom

Fast and accurate React renderer for Notion.

NPM Build Status Prettier Code Formatting

Install

npm install react-notion-x-custom

Customization

Person property is hidden from the list of properties available.

Usage

First you'll want to fetch the content for a Notion page:

import { NotionAPI } from 'notion-client'

const api = new NotionAPI()

// fetch the page's content, including all async blocks, collection queries, and signed urls
const recordMap = await api.getPage('067dd719a912471ea9a3ac10710e7fdf')

Once you have the data for a Notion page, you can render it:

import React from 'react'
import { NotionRenderer } from 'react-notion-x-custom'

export default ExampleNotionPage({ recordMap }) => (
  <NotionRenderer
    recordMap={recordMap}
    fullPage={true}
    darkMode={false}
  />
)

Styles

You'll need to import some CSS styles as well. If you're using Next.js, we recommend you put these in pages/_app.js:

// core styles shared by all of react-notion-x (required)
import 'react-notion-x-custom/src/styles.css'

// used for code syntax highlighting (optional)
import 'prismjs/themes/prism-tomorrow.css'

// used for collection views (optional)
import 'rc-dropdown/assets/index.css'

// used for rendering equations (optional)
import 'katex/dist/katex.min.css'

License

MIT © Travis Fischer

Support my OSS work by following me on twitter twitter

Readme

Keywords

none

Package Sidebar

Install

npm i react-notion-x-custom

Weekly Downloads

19

Version

6.6.18

License

MIT

Unpacked Size

2.67 MB

Total Files

234

Last publish

Collaborators

  • anupam-saha