All checks were successful
Build and deploy website / build (push) Successful in 33s
9 lines
140 B
TypeScript
9 lines
140 B
TypeScript
export interface ComponentProps {
|
|
class?: string
|
|
title?: string
|
|
}
|
|
|
|
export interface LinkProps extends ComponentProps {
|
|
href: string
|
|
}
|