Remix - Testing
Given this test snippet, what will be the output?
const { getByText } = render(<button>Click me</button>);
const button = getByText('Click me');
console.log(button.tagName);