16 lines
280 B
TypeScript
16 lines
280 B
TypeScript
import React from 'react';
|
|
import { Footer } from '@/ui/Footer';
|
|
|
|
interface AppFooterProps {
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
/**
|
|
* AppFooter is the bottom section of the application.
|
|
*/
|
|
export function AppFooter({ children }: AppFooterProps) {
|
|
return (
|
|
<Footer />
|
|
);
|
|
}
|