First Commit
This commit is contained in:
Executable
+20
@@ -0,0 +1,20 @@
|
||||
import Row from "@/src/components/twui/layout/Row";
|
||||
import { AppContext } from "@/src/pages/__root";
|
||||
import type { AppContextObject } from "@/src/types";
|
||||
import React from "react";
|
||||
|
||||
export default function Footer() {
|
||||
const appContext: AppContextObject = React.useContext(AppContext);
|
||||
const { user, appState } = appContext;
|
||||
|
||||
/**
|
||||
* Render component
|
||||
*/
|
||||
return (
|
||||
<footer className="w-full p-4 h-20">
|
||||
<Row className="h-full">
|
||||
<span>Copyright {new Date().getFullYear()}</span>
|
||||
</Row>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user