mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-05-14 07:26:43 +00:00
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
import * as React from 'react'
|
|
import InnerHTML from 'dangerously-set-html-content'
|
|
import * as types from '../lib/types'
|
|
|
|
export const CustomHtml: React.FC<{ site: types.Site }> = ({ site }) => {
|
|
if (!site.html) {
|
|
return null
|
|
}
|
|
|
|
return <InnerHTML html={site.html} />
|
|
}
|