Components
Loading preview...
// This is a demo of a preview
// That's what users will see in the preview
import { Component } from "@/components/ui/volumeslider";
const DemoOne = () => {
return <Component />;
};
// IMPORTANT:
// format of the export MUST be export default { DemoOneOrOtherName }
// if you don't do this, the demo will not be shown
export default { DemoOne };