1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-21 04:19:37 +02:00
flame/client/src/components/UI/Text/Message/Message.tsx

12 lines
247 B
TypeScript
Raw Normal View History

import { ReactNode } from 'react';
import classes from './Message.module.css';
interface Props {
children: ReactNode;
}
export const Message = ({ children }: Props): JSX.Element => {
return <p className={classes.message}>{children}</p>;
};