14 lines
336 B
TypeScript
14 lines
336 B
TypeScript
import * as React from 'react';
|
|
export interface IGlobalFooterProps {
|
|
links?: Array<{
|
|
key?: string;
|
|
title: React.ReactNode;
|
|
href: string;
|
|
blankTarget?: boolean;
|
|
}>;
|
|
copyright?: React.ReactNode;
|
|
style?: React.CSSProperties;
|
|
}
|
|
|
|
export default class GlobalFooter extends React.Component<IGlobalFooterProps, any> {}
|