Story
As a user, I want to be able to navigate the page by the use of buttons.
AC
When the user clicks a button
Then the function associated with the button should run.
DN
assign a const to each button by id: clearButton for clear and convertButton for convert
use a click event listener for convertButton to run the function determineConverter
use a click event listener for clearButton to run the function clearFormAndOutput
use placeholder functions for clearFormAndOutput & determineConverter that console log to test
Story As a user, I want to be able to navigate the page by the use of buttons.
AC When the user clicks a button Then the function associated with the button should run.
DN assign a const to each button by id: clearButton for clear and convertButton for convert use a click event listener for convertButton to run the function determineConverter use a click event listener for clearButton to run the function clearFormAndOutput use placeholder functions for clearFormAndOutput & determineConverter that console log to test