geothermie-atlas/app/components/success.tsx

6 lines
230 B
TypeScript

import type { ReactNode } from 'react';
export default function Success(props: { children: ReactNode }) {
return <p className="w-full whitespace-normal break-normal bg-green-300 text-green-700 mb-1 p-4">{props.children}</p>;
}