Skip to main content
Module

x/fastro/components/footer.tsx

The Web Framework for Full Stack Apps
Go to Latest
File
import React from "https://esm.sh/react@18.2.0?dev";
export default function (props: { version: string }) { return ( <footer className="mt-auto text-center fw-lighter text-white-50"> { /* <nav className="nav nav-mastfoot justify-content-center"> </nav> */ } <span className="fw-lighter"> Made with{" "} <a href="https://deno.land/x/fastro" className="fw-lighter text-decoration-none text-white " > Fastro {props.version} </a> </span> </footer> );}