mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-15 09:45:10 -05:00
6 lines
166 B
TypeScript
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>;
|
|
}
|