Advertisement
sazid_iiuc

Untitled

Jun 2nd, 2021
908
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React from 'react';
  2. import NumPad from './NumPad';
  3. import './CSS/inputBox.css';
  4.  
  5.  
  6. function InputBox() {
  7.     return (
  8.         <>
  9.             <form>
  10.                 <input type="text" value={result}></input>
  11.             </form>
  12.         </>
  13.     )
  14. }
  15.  
  16. export default InputBox
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement