2025-12-11 10:40:55 +01:00
|
|
|
/*
|
2026-01-12 15:00:36 +01:00
|
|
|
* Copyright (c) 2026 by Christian Kellner.
|
2025-12-11 10:40:55 +01:00
|
|
|
* Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2026-01-22 16:09:36 +01:00
|
|
|
import { Banner, MarkdownRender } from '@douyinfe/semi-ui-19';
|
2021-01-21 16:09:23 +01:00
|
|
|
|
|
|
|
|
export default function Help({ readme }) {
|
|
|
|
|
return (
|
2023-03-20 08:52:13 +01:00
|
|
|
<Banner
|
|
|
|
|
fullMode={false}
|
|
|
|
|
type="info"
|
|
|
|
|
closeIcon={null}
|
|
|
|
|
title={<div style={{ fontWeight: 600, fontSize: '14px', lineHeight: '20px' }}>Information</div>}
|
2025-10-30 12:42:03 +01:00
|
|
|
description={<MarkdownRender raw={readme} />}
|
2023-03-20 08:52:13 +01:00
|
|
|
/>
|
2021-01-21 16:09:23 +01:00
|
|
|
);
|
|
|
|
|
}
|