6 lines
128 B
TypeScript
6 lines
128 B
TypeScript
import { Alert } from 'antd'
|
|
|
|
export function Beta(): JSX.Element {
|
|
return <Alert message="Beta" type="warning" showIcon />
|
|
}
|