How to change the height of table rows in html
export const Table = () => { const employees: Employee[] = [ { name: "John Doe", position: "Manager", employed: "23/04/18" }, { name: "Alex Nar", position: "Software Engineer", employed: "23/04/18" } ] return ( <div className="w-1/2 h-1/2 overflow-scroll text-gray-700 bg-white…