2025-04-18 19:19:20 +02:00
|
|
|
---
|
|
|
|
title: Layout
|
|
|
|
---
|
|
|
|
|
2025-05-24 13:11:06 +02:00
|
|
|
import { DocusaurusDoc } from '@freesewing/react/components/Docusaurus'
|
|
|
|
import { ComponentDocs } from '@site/src/components/component-docs.js'
|
|
|
|
import * as jsdoc from '@site/prebuild/jsdoc/components.layout.mjs'
|
|
|
|
import {
|
|
|
|
BaseLayoutExample,
|
|
|
|
BaseLayoutLeftExample,
|
|
|
|
BaseLayoutProseExample,
|
|
|
|
BaseLayoutRightExample,
|
|
|
|
BaseLayoutWideExample,
|
|
|
|
LayoutExample,
|
|
|
|
NoTitleLayoutExample,
|
|
|
|
} from './_examples.js'
|
|
|
|
|
|
|
|
<DocusaurusDoc>
|
|
|
|
|
2025-05-25 16:29:57 +02:00
|
|
|
- [Components](#components)
|
|
|
|
|
|
|
|
## Components
|
|
|
|
|
|
|
|
The **Layout** component family provides the following components:
|
2025-05-24 13:11:06 +02:00
|
|
|
|
|
|
|
- [BaseLayout](#baselayout)
|
|
|
|
- [BaseLayoutLeft](#baselayoutleft)
|
|
|
|
- [BaseLayoutProse](#baselayoutprose)
|
|
|
|
- [BaseLayoutRight](#baselayoutright)
|
|
|
|
- [BaseLayoutWide](#baselayoutwide)
|
|
|
|
- [Layout](#layout)
|
|
|
|
- [NoTitleLayout](#notitlelayout)
|
|
|
|
|
2025-05-25 16:29:57 +02:00
|
|
|
### BaseLayout
|
|
|
|
|
2025-05-24 13:11:06 +02:00
|
|
|
<ComponentDocs docs={jsdoc.jsdocBaseLayout} example={BaseLayoutExample} />
|
|
|
|
|
2025-05-25 16:29:57 +02:00
|
|
|
### BaseLayoutLeft
|
|
|
|
|
2025-05-24 13:11:06 +02:00
|
|
|
<ComponentDocs docs={jsdoc.jsdocBaseLayoutLeft} example={BaseLayoutLeftExample} />
|
|
|
|
|
2025-05-25 16:29:57 +02:00
|
|
|
### BaseLayoutProse
|
|
|
|
|
2025-05-24 13:11:06 +02:00
|
|
|
<ComponentDocs docs={jsdoc.jsdocBaseLayoutProse} example={BaseLayoutProseExample} />
|
|
|
|
|
2025-05-25 16:29:57 +02:00
|
|
|
### BaseLayoutRight
|
|
|
|
|
2025-05-24 13:11:06 +02:00
|
|
|
<ComponentDocs docs={jsdoc.jsdocBaseLayoutRight} example={BaseLayoutRightExample} />
|
|
|
|
|
2025-05-25 16:29:57 +02:00
|
|
|
### BaseLayoutWide
|
|
|
|
|
2025-05-24 13:11:06 +02:00
|
|
|
<ComponentDocs docs={jsdoc.jsdocBaseLayoutWide} example={BaseLayoutWideExample} />
|
|
|
|
|
2025-05-25 16:29:57 +02:00
|
|
|
### Layout
|
|
|
|
|
2025-05-24 13:11:06 +02:00
|
|
|
<ComponentDocs docs={jsdoc.jsdocLayout} example={LayoutExample} />
|
|
|
|
|
2025-05-25 16:29:57 +02:00
|
|
|
### NoTitleLayout
|
|
|
|
|
2025-05-24 13:11:06 +02:00
|
|
|
<ComponentDocs docs={jsdoc.jsdocNoTitleLayout} example={NoTitleLayoutExample} />
|
|
|
|
|
|
|
|
</DocusaurusDoc>
|