teableio/teable

View on GitHub
packages/ui-lib/src/message.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import type { FC } from 'react';

type Props = {
  message: string;
  children?: never;
};

export const Message: FC<Props> = ({ message }) => <span>{message}</span>;