Skip to content

Instantly share code, notes, and snippets.

@bharat-tiwari
Last active May 3, 2019 20:34
Show Gist options
  • Save bharat-tiwari/9ffc2beca2e313786a46dc8f1722b140 to your computer and use it in GitHub Desktop.
Save bharat-tiwari/9ffc2beca2e313786a46dc8f1722b140 to your computer and use it in GitHub Desktop.
App component with TestDocumentationBuilding
import React from "react";
import logo from "../assets/images/logo.svg";
import "./App.css";
import TestDocumentationBuilding from "../components";
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
<TestDocumentationBuilding testProp="Test Prop Value" />
</header>
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment