1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-12-24 12:34:20 +00:00
bluelib/src/components/layouts/LayoutThreeCol.stories.jsx

31 lines
724 B
React
Raw Normal View History

2021-08-17 15:45:29 +00:00
import * as React from "react"
import * as ReactDOM from "react-dom"
import * as Decorators from "../../utils/Decorators"
import { LayoutThreeCol } from "./LayoutThreeCol"
export default {
component: LayoutThreeCol,
title: "Layouts/LayoutThreeCol",
decorators: [Decorators.Bluelib, Decorators.Fill],
parameters: {
layout: "fullscreen",
},
}
export const Default = props => (
<LayoutThreeCol {...props}>
<LayoutThreeCol.Left>
Left
</LayoutThreeCol.Left>
<LayoutThreeCol.Center>
Center
</LayoutThreeCol.Center>
<LayoutThreeCol.Right>
Right
</LayoutThreeCol.Right>
</LayoutThreeCol>
)
Default.args = {}