Issue with Flowbite only showing up halfway in mobile screen and not at all on computer
`import React from ‘react’ import { Table } from ‘flowbite-react’; const ManageBooks = () => { return ( <div className=”overflow-x-auto”> <Table hoverable> <Table.Head> <Table.HeadCell>Product name</Table.HeadCell> <Table.HeadCell>Color</Table.HeadCell> <Table.HeadCell>Category</Table.HeadCell> <Table.HeadCell>Price</Table.HeadCell> <Table.HeadCell> <span className=”sr-only”>Edit</span> </Table.HeadCell> </Table.Head> <Table.Body className=”divide-y”> <Table.Row className=”bg-black dark:border-gray-700 dark:bg-gray-800″> <Table.Cell className=”whitespace-nowrap font-medium text-gray-900 dark:text-white”> {‘Apple MacBook Pro 17″‘} </Table.Cell> <Table.Cell>Sliver</Table.Cell> <Table.Cell>Laptop</Table.Cell> <Table.Cell>$2999</Table.Cell> <Table.Cell> <a href=”#” […]