sendou.ink/app/components/FormInfoText.tsx
2021-12-26 10:48:14 +02:00

6 lines
166 B
TypeScript

import * as React from "react";
export function FormInfoText({ children }: { children: React.ReactNode }) {
return <p className="form-info-text">{children}</p>;
}