Add favorite/rating table columns

This commit is contained in:
jeffvli 2023-01-06 00:39:49 -08:00
parent d1dfbaedaa
commit ab031820f6
12 changed files with 158 additions and 29 deletions

View file

@ -0,0 +1,10 @@
import { Rating as MantineRating, RatingProps as MantineRatingProps } from '@mantine/core';
import styled from 'styled-components';
type RatingProps = MantineRatingProps;
const StyledRating = styled(MantineRating)``;
export const Rating = ({ ...props }: RatingProps) => {
return <StyledRating {...props} />;
};