TTime/frontend/src/Components/Footer.tsx

13 lines
285 B
TypeScript
Raw Normal View History

import React from 'react';
function Footer({ children }: { children: React.ReactNode }) {
return (
<footer className="bg-white">
<div className="flex justify-end items-center h-16 space-x-6 pr-6">
{children}
</div>
</footer>
);
}
export default Footer;