Docs/Components/Layout
SidebarFooter
React example follows below.
ts
import { SidebarFooter } from "@grassroot/ui-react"; <SidebarFooter />ts
<script setup lang="ts">import { SidebarFooter } from "@grassroot/ui-vue";</script> <template> <SidebarFooter /></template>ts
import { Component } from "@angular/core";import { GrassrootSidebarFooter } from "@grassroot/ui-angular"; @Component({ selector: "app-example", standalone: true, imports: [GrassrootSidebarFooter], template: ` <grassroot-sidebar-footer /> `,})export class ExampleComponent {}ts
<script lang="ts"> import { SidebarFooter } from "@grassroot/ui-svelte";</script> <SidebarFooter />ts
import { SidebarFooter } from "@grassroot/ui-solid"; export function Example() { return ( <> <SidebarFooter /> </> );}Installation
bash
pnpm dlx grassroot add ui/sidebar-footerbash
npx grassroot@latest add ui/sidebar-footerbash
yarn dlx grassroot add ui/sidebar-footerbash
bunx grassroot add ui/sidebar-footerAPI Reference
This entry takes no props of its own.