diff --git a/equations/src/App.css b/equations/src/App.css index 74b5e05..8f87f05 100644 --- a/equations/src/App.css +++ b/equations/src/App.css @@ -28,6 +28,10 @@ color: #61dafb; } +.mouseover:hover{ + cursor:pointer; +} + @keyframes App-logo-spin { from { transform: rotate(0deg); diff --git a/equations/src/App.js b/equations/src/App.js index a5fdccf..686ad3b 100644 --- a/equations/src/App.js +++ b/equations/src/App.js @@ -2,6 +2,12 @@ import logo from './logo.svg'; import {useEffect,useState} from 'react'; import './App.css'; +function EditorControls(p) { + return <> + {"<"}{">"} + +} + function EquationGroup(p) { const {equation,setEquation,data,arr,key,id} = p @@ -15,6 +21,7 @@ function EquationGroup(p) { return <> ( +
+ +
) }