Skip to content

Commit bb8b699

Browse files
committed
recheck
1 parent 7f2ae09 commit bb8b699

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

starter/App.js

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,24 @@ class App extends React.Component {
99
return (
1010
<div>
1111
<Merge
12-
one={{ name: fadeIn, duration: '4', timingFunction: 'ease-in' }}
13-
two={{ name: slideDown, duration: '2s', timingFunction: 'ease-out'}}
12+
one={{ name: fadeIn, duration: "3s", timingFunction: "ease-in" }}
13+
two={{ name: slideDown, duration: "6s", timingFunction: "ease-out" }}
1414
as="h1"
15-
style={{ color: 'red' }}
15+
style={{ color: "red" }}
1616
>
1717
Hello World
1818
</Merge>
19-
<br/>
20-
<FadeIn duration="4s" as="h1" style={{ color: 'red' }} timingFunction="linear" direction="reverse">
19+
<br />
20+
<FadeIn
21+
duration="2s"
22+
as="strong"
23+
timingFunction="linear"
24+
direction="reverse"
25+
>
2126
Hello World
2227
</FadeIn>
23-
<br/>
24-
<ExpanseUp
25-
duration="4s"
26-
>
28+
<br />
29+
<ExpanseUp duration="4s">
2730
World Hello
2831
</ExpanseUp>
2932
</div>

0 commit comments

Comments
 (0)