Skip to content

Instantly share code, notes, and snippets.

@surajitbasak109
Created February 10, 2020 19:58
Show Gist options
  • Save surajitbasak109/07584f8e87a5157cf5bc66dec7af6ce1 to your computer and use it in GitHub Desktop.
Save surajitbasak109/07584f8e87a5157cf5bc66dec7af6ce1 to your computer and use it in GitHub Desktop.
import React from "react";
import "./App.css";
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
searchItems: []
};
}
render() {
return(<div className="container mt-3">Hello from app</div>)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment