Skip to content

Instantly share code, notes, and snippets.

@rishichawda
Created May 18, 2019 18:48
Embed
What would you like to do?
Initial App.js file - Managing Application state without Redux
import React from "react";
import "./App.scss";
import ChildComponent from "./ChildComponent";
const App = () => {
return (
<>
<div className="app">
<h2>Welcome to React!</h2>
</div>
<ChildComponent />
</>
);
};
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment