Skip to content

Instantly share code, notes, and snippets.

@pratik-chakravorty
Created August 4, 2018 19:51
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/3ad5cf05e30a2f08e314a2ff8e1846e7 to your computer and use it in GitHub Desktop.
Save pratik-chakravorty/3ad5cf05e30a2f08e314a2ff8e1846e7 to your computer and use it in GitHub Desktop.
import React, { Component } from "react";
import { Container, Header } from "semantic-ui-react";
import AddItem from "./AddItem";
class App extends Component {
render() {
return (
<Container>
<Header as="h1" className="centered">
Shopping List App
</Header>
<AddItem />
</Container>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment