forked from Transparency/kgroad-frontend2
14 lines
253 B
TypeScript
14 lines
253 B
TypeScript
import "./Paragraph.scss";
|
|
|
|
interface IParagraphProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
const Paragraph: React.FC<IParagraphProps> = ({
|
|
children,
|
|
}: IParagraphProps) => {
|
|
return <p className="paragraph">{children}</p>;
|
|
};
|
|
|
|
export default Paragraph;
|