• This project
    • Loading...
  • Sign in

김대휘 / Do-gether

%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 1
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Do-gether
  • client
  • src
  • pages
  • MainPage.js
  • 김대휘's avatar
    라우팅 설정 · 39e7e1bc
    39e7e1bc
    김대휘 authored 2020-06-14 17:46:24 +0900
MainPage.js 237 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import React from "react";
import NavBar from "../components/NavBar.js";
import BodyLayout from "../components/BodyLayout.js";

function App() {
  return (
    <>
      <NavBar />
      <BodyLayout />
    </>
  );
}

export default App;