9 lines
150 B
TypeScript
9 lines
150 B
TypeScript
export type CardStackProps = {
|
|
title: string;
|
|
description?: string;
|
|
children?: React.ReactNode;
|
|
[key: string]: any;
|
|
};
|
|
|
|
export { CardStack };
|