Files
martials.no/src/types/props.ts

9 lines
143 B
TypeScript
Raw Normal View History

export interface ComponentProps {
class?: string;
title?: string;
}
export interface LinkProps extends ComponentProps {
href: string;
}