mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 11:34:21 +00:00
parent
1e7d5d1709
commit
5d96baccc6
1 changed files with 5 additions and 5 deletions
|
@ -4,12 +4,12 @@ import { Form as FormComponent } from "../components/forms/Form"
|
|||
import { Ruby as RubyComponent } from "../components/annotations/Ruby"
|
||||
|
||||
|
||||
export const Bluelib = Story => <BluelibComponent theme={"paper"} style={{backgroundColor: "transparent"}}><Story/></BluelibComponent>
|
||||
export const Bluelib = Story => <BluelibComponent theme={"paper"} style={{backgroundColor: "transparent"}}>{Story()}</BluelibComponent>
|
||||
|
||||
export const Fill = Story => <div style={{height: "100vh"}}><Story/></div>
|
||||
export const Fill = Story => <div style={{height: "100vh"}}>{Story()}</div>
|
||||
|
||||
export const Box = Story => <BoxComponent><Story/></BoxComponent>
|
||||
export const Box = Story => <BoxComponent>{Story()}</BoxComponent>
|
||||
|
||||
export const Form = Story => <FormComponent><Story/></FormComponent>
|
||||
export const Form = Story => <FormComponent>{Story()}</FormComponent>
|
||||
|
||||
export const Ruby = Story => <RubyComponent><Story/></RubyComponent>
|
||||
export const Ruby = Story => <RubyComponent>{Story()}</RubyComponent>
|
||||
|
|
Loading…
Reference in a new issue