fix: make table safely overflow

This commit is contained in:
p-sw 2024-06-02 02:07:07 +09:00
parent 04b819619b
commit a905ca1aaf

View File

@ -23,6 +23,11 @@ const overrideComponents = {
className={`${props.className} rounded-md bg-neutral-800 text-orange-500 font-light p-1 before:content-none after:content-none`}
/>
),
table: (props: any) => (
<div className="overflow-auto">
<table {...props} className={`${props.className}`} />
</div>
),
};
const router = createBrowserRouter(