import React, { useRef } from 'react' import ReactDOM from 'react-dom' const App = (props) => { const ref = useRef(null) const onClick = () => { ref.current.style.backgroundColor = '#61dbfb' ref.current.style.padding = '50px' ref.current.style.textAlign = 'center' } return (