• This project
    • Loading...
  • Sign in

서민정 / SEARCH-AND-CHAT

%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 2
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • oss-chatbot
  • client
  • src
  • views
  • Footer.js
  • 서민정's avatar
    update directroy · 5e12e27d
    5e12e27d Browse Files
    서민정 authored 2020-05-31 17:37:51 +0900
Footer.js 378 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import React from 'react'
import {Icon} from 'antd';

function Footer() {
    return (
        <div style={{
            height: '80px', display: 'flex',
            flexDirection: 'column', alignItems: 'center',
            justifyContent: 'center', fontSize:'1rem'
        }}>
           <p> CHATBOT APP <Icon type="smile" /></p>
        </div>
    )
}

export default Footer