Files
2026-07-13 13:32:57 +08:00

15 lines
518 B
TypeScript

import { EnvironmentLabel } from "~/components/environments/EnvironmentLabel";
export default function Story() {
return (
<div className="space-y-8 divide-y p-8">
<div className="flex flex-col items-start gap-y-8">
<EnvironmentLabel environment={{ type: "PRODUCTION" }} />
<EnvironmentLabel environment={{ type: "STAGING" }} />
<EnvironmentLabel environment={{ type: "DEVELOPMENT" }} />
<EnvironmentLabel environment={{ type: "PREVIEW" }} />
</div>
</div>
);
}