• This project
    • Loading...
  • Sign in

이준성 / khuwitch

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • khuwitch
  • frontend
  • src
  • App.js
  • ijunseong's avatar
    Update: page structure · 0e780d97
    0e780d97
    ijunseong authored 2020-12-10 00:59:48 +0900
App.js 228 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import React from "react";
import './App.css';
import Body from "./Body";

class App extends React.Component {
  render(){
    return (
      <div className="app">
        <Body />
      </div>
    );
  }
}

export default App;