Skip to content

Instantly share code, notes, and snippets.

@pratik-chakravorty
Created July 8, 2018 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pratik-chakravorty/df8c2bac32dbc4357da1330cb2f64e5f to your computer and use it in GitHub Desktop.
Save pratik-chakravorty/df8c2bac32dbc4357da1330cb2f64e5f to your computer and use it in GitHub Desktop.
import React, { Component } from "react";
import { Container, Header } from "semantic-ui-react";
class App extends Component {
render() {
return (
<Container>
<Header as="h1" className="centered">
Shopping List App
</Header>
</Container>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment