diff --git a/frontend/src/Editor/DataSourceManager/SourceComponents/Mysql.jsx b/frontend/src/Editor/DataSourceManager/SourceComponents/Mysql.jsx deleted file mode 100644 index e7b1634dbd..0000000000 --- a/frontend/src/Editor/DataSourceManager/SourceComponents/Mysql.jsx +++ /dev/null @@ -1,79 +0,0 @@ -import React from 'react'; - -export const Mysql = ({ optionchanged, options }) => { - return ( -
-
-
- - optionchanged('host', e.target.value)} - value={options.host.value} - /> -
-
- - optionchanged('port', e.target.value)} - value={options.port.value} - /> -
-
- - -
-
-
- -
- optionchanged('database', e.target.value)} - value={options.database.value} - /> -
-
- - optionchanged('username', e.target.value)} - value={options.username.value} - /> -
-
- - optionchanged('password', e.target.value)} - value={options.password.value} - /> -
-
-
- ); -};