8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
export default function Footer() {
|
|
return (
|
|
<footer style={{ padding: "24px", textAlign: "center", color: "#666" }}>
|
|
<small>Sample footer for Next.js clone</small>
|
|
</footer>
|
|
);
|
|
}
|