Files
Lucas Manuel Rodriguez 8e9bc79a5e Add support for Windows to conditional access policies (#41830)
Resolves #41476
([Figma](https://www.figma.com/design/Su6nBw3Oi3VtGrQaIcK1cU/-38041-Entra-conditional-access--Windows?node-id=0-1))

I added a changes file in the first PR, so no need to add one here.

<img width="1096" height="1119" alt="Screenshot 2026-03-17 at 12 36
36 PM"
src="https://github.com/user-attachments/assets/a18ded0c-a5d5-4b56-9bf8-944566603088"
/>

## Testing

- [X] Added/updated automated tests
- [X] QA'd all new/changed functionality manually
2026-03-17 16:30:21 -03:00

18 lines
369 B
TypeScript

import { Meta, StoryObj } from "@storybook/react";
import PlatformCell from ".";
const meta: Meta<typeof PlatformCell> = {
title: "Components/Table/PlatformCell",
component: PlatformCell,
args: {
platforms: ["darwin", "windows", "linux", "chrome"],
},
};
export default meta;
type Story = StoryObj<typeof PlatformCell>;
export const Basic: Story = {};