Files
dpage-editor/src/components/Error.tsx
T
hamid zarghami d36b8e40f0 base structure
2025-11-12 11:45:13 +03:30

15 lines
275 B
TypeScript

import { type FC } from 'react'
type Props = {
errorText: string
}
const Error: FC<Props> = (props: Props) => {
return (
<div className='mt-1.5 font-normal text-red-500 text-[11px]'>
{props.errorText}
</div>
)
}
export default Error