6 lines
211 B
TypeScript
6 lines
211 B
TypeScript
import { FC } from "react";
|
|
|
|
export const Footer: FC = () => {
|
|
return <div className="flex h-[30px] sm:h-[50px] border-t border-neutral-300 py-2 px-8 items-center sm:justify-between justify-center"></div>;
|
|
};
|