Skip to content

Instantly share code, notes, and snippets.

@dhimasanb
Created June 25, 2019 16:43
Show Gist options
  • Save dhimasanb/87405c7d8e5959c182892cc9aa24bfda to your computer and use it in GitHub Desktop.
Save dhimasanb/87405c7d8e5959c182892cc9aa24bfda to your computer and use it in GitHub Desktop.
Scene App.js
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