diff --git a/components/EditorName.js b/components/EditorName.js index a5bb4563..e29e0310 100644 --- a/components/EditorName.js +++ b/components/EditorName.js @@ -1,16 +1,11 @@ import React from 'react'; -import ReactToolTip from 'react-tooltip'; import levelNames from '../constants/levelNames'; +import '../node_modules/balloon-css/balloon.css'; export default function EditorName({ editorName, editorLevel }) { return ( - - - {editorName} - - - {`Lv.${editorLevel} ${levelNames[editorLevel]} `} - + + {editorName} ); }