geothermie-atlas/app/components/success.tsx

6 lines
230 B
TypeScript
Raw Permalink Normal View History

2023-10-19 09:07:33 +00:00
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>;
}