Skip to content
Snippets Groups Projects
Unverified Commit 0743fb2b authored by Avanish Singh's avatar Avanish Singh Committed by GitHub
Browse files

Add files via upload

parent f7801f71
No related branches found
No related tags found
No related merge requests found
import React from 'react';
import ChatbotComponent from './components/ChatbotComponent';
const App = () => {
return (
<div>
<ChatbotComponent />
</div>
);
};
export default App;
import React from 'react';
import ReactDOM from 'react-dom';
import Chatbot from "./components/ChatbotComponent";
ReactDOM.render(
<Chatbot/>,
document.getElementById('root')
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment