Skip to content

Instantly share code, notes, and snippets.

@vsavkin
Created March 13, 2019 14:19
Show Gist options
  • Save vsavkin/2f9da3273bad2073ca70e9ee2cb0495d to your computer and use it in GitHub Desktop.
Save vsavkin/2f9da3273bad2073ca70e9ee2cb0495d to your computer and use it in GitHub Desktop.
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