Created
February 10, 2020 19:58
-
-
Save surajitbasak109/07584f8e87a5157cf5bc66dec7af6ce1 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 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