1
0
Fork 0
freesewing/sites/sde/components/dynamic-org-docs.mjs
2023-09-29 08:05:40 +02:00

13 lines
453 B
JavaScript

import { Popout } from 'shared/components/popout/index.mjs'
import { WebLink } from 'shared/components/link.mjs'
// This is how we skip the docs in the sde
export const DynamicOrgDocs = () => (
<Popout note>
<h5>The FreeSewing stand-alone development environment does not include documentation</h5>
<p>
Go to <WebLink href="https://freesewing.org/" txt="FreeSewing.org" /> if you want all features
enabled.
</p>
</Popout>
)