App.js 494 Bytes
import React from "react";
import { Typography, Icon } from 'antd';
import chatbot from './chatbot/chatbot';
const { Title } = Typography;

function App() {
  return (
    <div>
      <div style={{ display: 'flex', justifyContent: 'center', marginTop: '2rem' }}>
        <Title level={2} >CHAT BOT APP&nbsp;<Icon type="robot" /></Title>
      </div>
      <div style={{ display: 'flex', justifyContent: 'center' }}>
       
        <chatbot />
      </div>
    </div>
  )
}

export default App