Created
June 29, 2018 04:48
-
-
Save saigowthamr/1958f5d7fa3f712dbcef5901cbb254a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class App extends React.Component { | |
render() { | |
return ( | |
<Accordion> | |
<Heading>Heading 1</Heading> | |
<Text> | |
“You've gotta dance like there's nobody watching, Love like you'll | |
never be hurt, Sing like there's nobody listening, And live like it's | |
heaven on earth.” ― William W. Purkey | |
</Text> | |
<Heading>Heading 2</Heading> | |
<Text> | |
“Don’t walk in front of me… I may not follow Don’t walk behind me… I | |
may not lead Walk beside me… just be my friend” ― Albert Camus | |
</Text> | |
<Heading>Heading 3</Heading> | |
<Text> | |
“Darkness cannot drive out darkness: only light can do that. Hate | |
cannot drive out hate: only love can do that.” ― Martin Luther King | |
Jr., A Testament of Hope: The Essential Writings and Speeches | |
</Text> | |
<Heading>Heading 4</Heading> | |
<Text> | |
Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. | |
Integer ut neque. Vivamus nisi metus, molestie vel, gravida in, | |
condimentum sit amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. | |
Proin viverra leo ut odio. Curabitur malesuada. Vestibulum a velit eu | |
ante scelerisque vulputate. | |
</Text> | |
<Heading>Heading 5</Heading> | |
<Text> | |
“I believe that everything happens for a reason. People change so that | |
you can learn to let go, things go wrong so that you appreciate them | |
when they're right, you believe lies so you eventually learn to trust | |
no one but yourself, and sometimes good things fall apart so better | |
things can fall together.” ― Marilyn Monroe | |
</Text> | |
</Accordion> | |
); | |
} | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment