Skip to content

Commit

Permalink
[Package]: migrate NewChip component to TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
raskolnikov-rodion committed Nov 18, 2023
1 parent a55b306 commit bc0aa42
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ const useStyles = makeStyles({
},
});

function NewChip({ className }) {
type NewChipProps = {
className: string;
};

function NewChip({ className }: NewChipProps) {
const classes = useStyles();
return (
<MUIChip
Expand Down

0 comments on commit bc0aa42

Please sign in to comment.