TTime/frontend/src/Components/Footer.tsx

14 lines
300 B
TypeScript
Raw Normal View History

2024-03-07 11:48:34 +01:00
import React from "react";
2024-03-07 11:48:34 +01:00
function Footer({ children }: { children: React.ReactNode }): JSX.Element {
return (
<footer className="bg-white">
2024-03-07 11:48:34 +01:00
<div className="flex justify-end items-center h-16 space-x-6 pr-6">
{children}
</div>
</footer>
);
}
2024-03-07 11:48:34 +01:00
export default Footer;