mirror of
https://github.com/tuxdotrs/tpanel.git
synced 2025-10-10 12:51:54 +05:30
12 lines
222 B
TypeScript
12 lines
222 B
TypeScript
import { Gtk } from "ags/gtk4";
|
|
|
|
export const Footer = () => {
|
|
const { END } = Gtk.Align;
|
|
|
|
return (
|
|
<box valign={END} cssClasses={["footer"]}>
|
|
<label hexpand label="NOBODY FUX WITH TUX" />
|
|
</box>
|
|
);
|
|
};
|