• This project
    • Loading...
  • Sign in

강동현 / nodejs-game

%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
  • nodejs-game
  • web
  • src
  • components
  • common
  • Main.tsx
  • Overnap's avatar
    기본 구조 컴포넌트 추가 및 적용 · 5b1cfd3b
    5b1cfd3b
    Overnap authored 2021-06-01 19:46:32 +0900
Main.tsx 241 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
import React from 'react';
import { Footer } from './Footer';

export const Main: React.FC = ({ children }) => {
  return (
    <div className="flex flex-col items-center w-screen h-screen">
      {children}
      <Footer/>
    </div>
  );
}