Files
FastUI/react/fastui/components/text.tsx
Samuel Colvin eb6147512c moving python
2023-11-12 20:15:23 +00:00

9 lines
155 B
TypeScript

import { FC } from 'react'
export interface TextProps {
type: 'Text'
text: string
}
export const TextComp: FC<TextProps> = ({ text }) => <>{text}</>