mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-07 02:05:14 -05:00
6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
import type * as React from "react";
|
|
|
|
export function ErrorMessage({ children }: { children: React.ReactNode }) {
|
|
return <div className="error-message">{children}</div>;
|
|
}
|