Revert "Feat/parent child retrieval" (#12095)

This commit is contained in:
-LAN-
2024-12-25 20:55:44 +08:00
committed by GitHub
parent 9231fdbf4c
commit db2aa83a7c
216 changed files with 3116 additions and 9066 deletions

View File

@@ -1,12 +0,0 @@
import type { ComponentProps, FC } from 'react'
import classNames from '@/utils/classnames'
export type FormattedTextProps = ComponentProps<'p'>
export const FormattedText: FC<FormattedTextProps> = (props) => {
const { className, ...rest } = props
return <p
{...rest}
className={classNames('leading-7', className)}
>{props.children}</p>
}