Created
June 25, 2019 16:43
-
-
Save dhimasanb/87405c7d8e5959c182892cc9aa24bfda to your computer and use it in GitHub Desktop.
Scene App.js
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 { Layout, Icon } from "antd"; | |
import Home from "./Home"; | |
import "./App.css"; | |
const App = () => { | |
return ( | |
<Layout className="app"> | |
<Layout.Content> | |
<div className="box"> | |
<Home /> | |
</div> | |
</Layout.Content> | |
<Layout.Footer className="footer"> | |
<Icon type="code" /> with <Icon type="heart" /> by | |
<a href="https://github.com/dhimasanb"> @dhimasanb</a> | |
</Layout.Footer> | |
</Layout> | |
); | |
}; | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment