@temporg/ui-drawer-layout
v99.10.0
Published
A main-content-plus-tray layout component
Downloads
6
Readme
category: packages
ui-drawer-layout
A main-content-plus-tray layout component
Components
The ui-drawer-layout
package contains the following:
Installation
yarn add @temporg/ui-drawer-layout
Usage
import React from 'react'
import { DrawerLayout } from '@temporg/ui-drawer-layout'
const MyLayout = () => {
return (
<DrawerLayout>
<DrawerLayout.Tray>Hello from layout tray</DrawerLayout.Tray>
<DrawerLayout.Content>Hello from layout content</DrawerLayout.Content>
</DrawerLayout>
)
}