feat(web): components update
This commit is contained in:
14
web/src/components/RbDescriptions/index.tsx
Normal file
14
web/src/components/RbDescriptions/index.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { type FC } from 'react'
|
||||
import { Descriptions, type DescriptionsProps } from 'antd'
|
||||
|
||||
import styles from './index.module.css'
|
||||
|
||||
const RbDescriptions: FC<DescriptionsProps> = ({
|
||||
items,
|
||||
}) => {
|
||||
return (
|
||||
<Descriptions bordered column={1} className={styles.rbDescriptions} items={items} />
|
||||
)
|
||||
}
|
||||
|
||||
export default RbDescriptions
|
||||
Reference in New Issue
Block a user