import React from 'react' import { cs } from '../utils' import { useNotionContext } from '../context' const katexSettings = { throwOnError: false, strict: false } export const Equation: React.FC<{ math: string block?: boolean children?: React.ReactNode className?: string }> = ({ math, className, ...rest }) => { const { components } = useNotionContext() return ( ) }