Files
suwayomi-material-you-webui/src/components/util/ListItemLink.tsx

15 lines
527 B
TypeScript
Raw Normal View History

2021-04-10 00:44:13 +04:30
/*
* Copyright (C) Contributors to the Suwayomi project
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
2021-04-10 00:44:13 +04:30
import { Link } from 'react-router-dom';
import ListItemButton, { ListItemButtonProps } from '@mui/material/ListItemButton';
2021-04-10 00:44:13 +04:30
export function ListItemLink(props: ListItemButtonProps<typeof Link>) {
return <ListItemButton component={Link} {...props} />;
2021-04-10 00:44:13 +04:30
}