mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
|
import Markdown from 'markdown-to-jsx';
|
||
|
|
||
|
type Props = {
|
||
|
notes: string;
|
||
|
};
|
||
|
|
||
|
export function NotesDetails({ notes }: Props) {
|
||
|
return <Markdown className="list-inside mt-6">{notes}</Markdown>;
|
||
|
}
|