mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-29 13:13:54 +08:00
12 lines
325 B
TypeScript
12 lines
325 B
TypeScript
import type { AnswerCardProps } from './AnswerCard';
|
|
import AnswerCard from './AnswerCard';
|
|
|
|
export type FullAnswerCardProps = Omit<
|
|
AnswerCardProps,
|
|
'commentCount' | 'votingButtonsSize'
|
|
>;
|
|
|
|
export default function FullAnswerCard(props: FullAnswerCardProps) {
|
|
return <AnswerCard {...props} votingButtonsSize="md" />;
|
|
}
|