diff --git a/frontend-react/src/index.js b/frontend-react/src/index.js
index add8537f5794e0ddaf81c8f950bfd8af40fe137c..d5076bd243adf428b4a3d69dc42d6db5e3b03cae 100644
--- a/frontend-react/src/index.js
+++ b/frontend-react/src/index.js
@@ -1,8 +1,8 @@
 import React from 'react';
 import ReactDOM from 'react-dom';
-import Chatbot from "./components/ChatbotComponent";
+import ChatbotComponent from "./components/ChatbotComponent";
 
 ReactDOM.render(
-    <Chatbot/>,
+    <ChatbotComponent/>,
     document.getElementById('root')
 );