mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-24 12:34:20 +00:00
26 lines
570 B
React
26 lines
570 B
React
|
import * as React from "react"
|
||
|
import * as ReactDOM from "react-dom"
|
||
|
import * as Decorators from "../../utils/Decorators"
|
||
|
import { LayoutFill } from "./LayoutFill"
|
||
|
import { Bluelib } from "../Bluelib"
|
||
|
|
||
|
|
||
|
export default {
|
||
|
component: LayoutFill,
|
||
|
title: "Layouts/LayoutFill",
|
||
|
decorators: [Decorators.Bluelib, Decorators.Fill],
|
||
|
parameters: {
|
||
|
layout: "fullscreen",
|
||
|
},
|
||
|
}
|
||
|
|
||
|
|
||
|
export const Default = props => (
|
||
|
<LayoutFill {...props}>
|
||
|
<LayoutFill.Single>
|
||
|
Single
|
||
|
</LayoutFill.Single>
|
||
|
</LayoutFill>
|
||
|
)
|
||
|
Default.args = {}
|