mirror of
https://github.com/samuelcolvin/FastUI.git
synced 2023-12-01 22:22:11 +03:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
import { FC } from 'react'
|
|
|
|
export interface TextProps {
|
|
type: 'Text'
|
|
text: string
|
|
}
|
|
|
|
export const TextComp: FC<TextProps> = ({ text }) => <>{text}</>
|