13 lines
285 B
TypeScript
13 lines
285 B
TypeScript
|
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;
|