Created
March 13, 2019 14:19
-
-
Save vsavkin/2f9da3273bad2073ca70e9ee2cb0495d 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 * as React from 'react'; | |
import { Component } from 'react'; | |
import './app.css'; | |
export class App extends Component { | |
render() { | |
const title = 'reactapp'; | |
return ( | |
<div> | |
<div style={{ textAlign: 'center' }}> | |
<happynrwl-greeting title={title} /> | |
<img | |
width="300" | |
src="https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png" | |
/> | |
</div> | |
<p> | |
This is a React app built with <a href="https://nx.dev">Nx</a>. | |
</p> | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment