version
version
is an object within the theme property for setting the theme object version.
To access the latest Vizzly releases, we'd recommend setting your <Vizzly.Dashboard />
version to 2
.
Default Value
import Vizzly, { type VizzlyTheming } from "@vizzly/dashboard"
export function Dashboard() {
const theme: VizzlyTheming.Base = {
// Default Value
version: 2,
}
return (
<Vizzly.Dashboard
// ...
theme={theme}
/>
)
}