-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.jsx
49 lines (47 loc) · 1.53 KB
/
App.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import React from "react";
import Chatbot from "react-chatbot-kit";
import "../node_modules/bootstrap/dist/css/bootstrap.min.css";
import "../node_modules/bootstrap/dist/js/bootstrap.bundle";
import Config from "./Config";
import MessageParser from "./MessageParser";
import ActionProvider from "./ActionProvider";
import "./app.css";
function App() {
return (
<>
<div className="app">
<div className="container">
<h1>
Simple chatbot made by{" "}
<span style={{ color: "red" }}>keyur kakadiya</span>
</h1>
</div>
<div className="container">
<h4>1. for find your enrollment no. in gtu enter enrollment no.</h4>
<h5>fill form and submit your responce </h5>
</div>
<div className="container">
<h4>2. want to know about web development type web development</h4>
</div>
<div className="container">
<h4>
3. want to know about software development type software development
</h4>
</div>
<div className="container">
<h4>
4. want to know about weather of your city and other cities type weather
</h4>
</div>
<div className="App mx-auto col-md-6 col-sm-8 col-lg-4 cpl-xl-3 my-5">
<Chatbot
config={Config}
messageParser={MessageParser}
actionProvider={ActionProvider}
/>
</div>
</div>
</>
);
}
export default App;