9 lines
143 B
TypeScript
9 lines
143 B
TypeScript
|
export interface ComponentProps {
|
||
|
class?: string;
|
||
|
title?: string;
|
||
|
}
|
||
|
|
||
|
export interface LinkProps extends ComponentProps {
|
||
|
href: string;
|
||
|
}
|