CLI previewInstall commands shown on this site are not released yet.

DocsComponentsLayout

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

API Reference

This entry takes no props of its own.