Layout
Components
The Layout component family provides the following components:
BaseLayout
This is the base layout
You can import the BaseLayout component from the layout component family in the @freesewing/react package:
import { BaseLayout } from "@freesewing/react/components/Layout"BaseLayoutLeft
The left column of the base layout
You can import the BaseLayoutLeft component from the layout component family in the @freesewing/react package:
import { BaseLayoutLeft } from "@freesewing/react/components/Layout"BaseLayoutProse
The main column for prose (text like docs and so on)
You can import the BaseLayoutProse component from the layout component family in the @freesewing/react package:
import { BaseLayoutProse } from "@freesewing/react/components/Layout"BaseLayoutRight
The right column of the base layout
You can import the BaseLayoutRight component from the layout component family in the @freesewing/react package:
import { BaseLayoutRight } from "@freesewing/react/components/Layout"BaseLayoutWide
The central column for wide content (no max-width)
You can import the BaseLayoutWide component from the layout component family in the @freesewing/react package:
import { BaseLayoutWide } from "@freesewing/react/components/Layout"Layout
This is the default layout, including title and breadcrumbs
You can import the Layout component from the layout component family in the @freesewing/react package:
import { Layout } from "@freesewing/react/components/Layout"NoTitleLayout
A layout for pages that do their own title/layout, like the sign in page
You can import the NoTitleLayout component from the layout component family in the @freesewing/react package:
import { NoTitleLayout } from "@freesewing/react/components/Layout"