14 lines
267 B
TypeScript
14 lines
267 B
TypeScript
|
import React from 'react';
|
||
|
type FooterLink = {
|
||
|
label: string;
|
||
|
href: string;
|
||
|
};
|
||
|
type FooterProps = {
|
||
|
year?: number;
|
||
|
brand?: string;
|
||
|
brandUrl?: string;
|
||
|
links?: FooterLink[];
|
||
|
};
|
||
|
declare const Footer: React.FC<FooterProps>;
|
||
|
export default Footer;
|