6 lines
129 B
TypeScript
6 lines
129 B
TypeScript
import React from 'react'
|
|
|
|
export const CustomLabel: React.FC = () => {
|
|
return <div>This is a custom `Label` component</div>
|
|
}
|