1
0
Fork 0
freesewing/sites/lab/components/dynamic-org-docs.mjs

14 lines
421 B
JavaScript
Raw Normal View History

import { Popout } from 'shared/components/popout/index.mjs'
import { WebLink } from 'shared/components/link.mjs'
2023-05-26 10:03:33 +02:00
// This is how we skip the docs in the lab
export const DynamicOrgDocs = () => (
<Popout note>
<h5>The FreeSewing lab does not include documentation</h5>
<p>
Go to <WebLink href="https://freesewing.org/" txt="FreeSewing.org" /> if you want all features
enabled.
</p>
</Popout>
)