refactor: remove useless ClickableCell props

This commit is contained in:
Sammy Teillet
2023-04-19 12:25:20 +02:00
parent 5962140656
commit 8d321013f3
2 changed files with 3 additions and 17 deletions

View File

@ -2,8 +2,6 @@ import * as React from 'react';
import { Link } from 'react-router-dom';
type OwnProps = {
name: string;
picture?: string;
href: string;
children?: React.ReactNode;
};