category: packages
ui-layout
Deprecated Components
The ui-layout
package will be removed in version 7.0.0. Please update your imports as follows:
Codemods are provided to assist in updating the packages. See ui-codemods
Deprecated Utilities
The ui-layout
package will be removed in version 7.0.0. Please update your imports as follows:
Installation
yarn add @instructure/ui-layout
Usage
import React from 'react'
import { DrawerLayout } from '@instructure/ui-layout'
const MyLayout = () => {
return (
<DrawerLayout>
<DrawerLayout.Tray>Hello from layout tray</DrawerLayout.Tray>
<DrawerLayout.Content>Hello from layout content</DrawerLayout.Content>
</DrawerLayout>
)
}