import React from 'react'; import { BuffiniLogo } from './BuffiniLogo'; export interface IAppFooter { theme?: 'dark' | 'light'; [x: string]: any; } export function AppFooter(props: IAppFooter) { const { theme = 'light' } = props; return ( ); }