Created
August 25, 2017 16:59
-
-
Save rojasmi1/d95d8e3ed17776933886667643c8e507 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
import React from 'react'; | |
import coreClasses from '../css/core.css'; | |
import componentClasses from './MyComponent.css'; | |
export default class MyComponent extends React.Component { | |
render() { | |
return ( | |
<div className="jumbotron"> | |
<h1>Minimalistic React Starter Kit</h1> | |
<div><a className={coreClasses.link} target="_blank" href="/test">Test</a></div> | |
<div className={componentClasses.componentWrapper}> | |
SOME SAMPLE TEXT HERE! | |
</div> | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment