Reactjs – How to vertically align items in a React Bootstrap Table row
I want to center the content in a React Bootstrap Table row, along the y-axis. Here's the code I currently have: import React from "react"; import { ThreeDots } from "react-bootstrap-icons"; return ( <Table> <thead> <tr> <th>#</th> <th>Question</th> <th>Answer</th> </tr>…