Files
gridpilot.gg/apps/website/components/app/AppFooter.tsx
2026-01-18 22:55:55 +01:00

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 />
);
}