Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
robinweser committed Nov 16, 2022
1 parent 0a0ef6f commit 0224981
Show file tree
Hide file tree
Showing 4 changed files with 929 additions and 337 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ describe('Using the FelaComponent component', () => {
style={{
fontSize: '12px',
color: 'red',
}}>
}}
>
{({ className }) => (
<div className={className}>I am red and written in 12px.</div>
)}
Expand All @@ -33,7 +34,8 @@ describe('Using the FelaComponent component', () => {
{
backgroundColor: 'black',
},
]}>
]}
>
{({ className }) => (
<div className={className}>
I am red on black and written in 12px.
Expand All @@ -57,7 +59,8 @@ describe('Using the FelaComponent component', () => {
({ bgColor }) => ({
backgroundColor: bgColor,
}),
]}>
]}
>
{({ className }) => (
<div className={className}>
I am red on blue and written in 12px.
Expand Down Expand Up @@ -108,7 +111,8 @@ describe('Using the FelaComponent component', () => {
style={{
fontSize: '12px',
color: 'red',
}}>
}}
>
<span>Hello World</span>
</FelaComponent>
)
Expand Down Expand Up @@ -137,7 +141,8 @@ describe('Using the FelaComponent component', () => {
style={{
fontSize: '12px',
color: 'red',
}}>
}}
>
Hello World
</FelaComponent>
)
Expand Down Expand Up @@ -213,7 +218,8 @@ describe('Using the FelaComponent component', () => {
<ExtendedButton
style={{ backgroundColor: 'blue' }}
color="black"
padding="10px">
padding="10px"
>
Hello World
</ExtendedButton>
)
Expand Down
Empty file.
Empty file.
Loading

0 comments on commit 0224981

Please sign in to comment.