diff --git a/apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider.stories.mdx b/apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider.stories.mdx
new file mode 100644
index 0000000000000..446014efe686a
--- /dev/null
+++ b/apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider.stories.mdx
@@ -0,0 +1,158 @@
+import { Meta, Story, Canvas } from '@storybook/addon-docs';
+
+
+
+# Slider Migration
+
+Fluent UI V8 provides the `Slider` control to represents an input that allows user to choose a value from within a specific range.
+Fluent UI v9 provides a `Slider` control with a different API.
+
+## Examples
+
+### Basic Migration
+
+Basic usage of `Slider` V8
+
+```tsx
+import { Slider } from '@fluentui/react/lib/Slider';
+
+export const V8BasicExample = () => ;
+
+export const V8SnappingExample = () => (
+
+);
+
+export const V8ControlledExample = () => {
+ const [sliderValue, setSliderValue] = React.useState(0);
+ const sliderOnChange = (value: number) => setSliderValue(value);
+ return ;
+};
+
+export const V8FormattedValueExample = () => {
+ const sliderAriaValueText = (value: number) => value + ' percent';
+ const sliderValueFormat = (value: number) => value + '%';
+ return (
+
+ );
+};
+```
+
+The equivalent `Slider` components in v9 are
+
+```tsx
+import { Slider, SliderProps, Label, useId, makeStyles, tokens } from '@fluentui/react-components';
+
+export const V9BasicExample = () => {
+ const basicId = useId();
+ return (
+ <>
+
+
+ >
+ );
+};
+
+export const V9SnappingExample = () => {
+ const snappingId = useId();
+ return (
+ <>
+
+
+ >
+ );
+};
+
+export const V9ControlledExample = () => {
+ const [sliderValue, setSliderValue] = React.useState(0);
+ const sliderOnChange: SliderProps['onChange'] = (ev, data) => setSliderValue(data.value);
+ const controlledId = useId();
+ return (
+ <>
+
+
+ >
+ );
+};
+
+const getFormattedExampleStyles = makeStyles({
+ wrapper: {
+ display: 'grid',
+ alignItems: 'center',
+ gridTemplateColumns: '1fr auto',
+ columnGap: tokens.spacingHorizontalL,
+ },
+});
+
+export const V9FormattedValueExample = () => {
+ const styles = getFormattedExampleStyles();
+ const [sliderValue, setSliderValue] = React.useState(0);
+ const sliderOnChange: SliderProps['onChange'] = (ev, data) => setSliderValue(data.value);
+ const formattedId = useId();
+ const sliderAriaValueText = `${sliderValue} percent`;
+ const sliderValueFormat = `${sliderValue}%`;
+ return (
+ <>
+
+
+
+ {sliderValueFormat}
+
+ >
+ );
+};
+```
+
+## Props Mapping
+
+## Migration from v8
+
+- `ariaLabel` => use `aria-label` instead
+- `ariaValueText` => explicitely set `aria-valuetext`
+- `buttonProps` => Slider props, other than className and id, are passed to `input` element
+- `componentRef` => use `ref` instead.
+- `inline` => use css, or wrap in flex parent
+- `label` => Use `Label` control with `htmlFor` and `id`
+- `onChanged` => use onChange and onMouse events
+- `origin` => no longer supported
+- `originFromZero` => no longer supported
+- `ranged`, `defaultLowerValue` and `lowerValue` => Not supported. Multi value slider will be future work in separate control.
+- `showValue` and `valueFormat` => use explicitly rendered value instead
+- `snapToStep` => use `step` instead
+- `styles` => pass classNames to individual slots
+- `theme` => use `FluentProvider` HOC instead
+
+## Property mapping
+
+| v8 `Slider` | v9 `Slider` |
+| ------------------- | ---------------- |
+| | |
+| `ariaLabel` | `aria-label` |
+| `ariaValueText` | `aria-valuetext` |
+| `buttonProps` | |
+| `componentRef` | `ref` |
+| `defaultLowerValue` | |
+| `inline` | |
+| `input` | `input` |
+| `label` | |
+| `lowerValue` | |
+| `onChanged` | `onChange` |
+| `origin` | |
+| `originFromZero` | |
+| `ranged` | |
+| `showValue` | |
+| `snapToStep` | `step` |
+| `styles` | `className` |
+| `theme` | |
+| `valueFormat` | |
diff --git a/apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Slider.stories.mdx b/apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Slider.stories.mdx
deleted file mode 100644
index 41e5233222ae8..0000000000000
--- a/apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Slider.stories.mdx
+++ /dev/null
@@ -1,95 +0,0 @@
-import { Meta, Story, Canvas } from '@storybook/addon-docs';
-
-import v8Demo from '!!raw-loader!./Sliderv8Examples.stories.tsx';
-import v9Demo from '!!raw-loader!./Sliderv9Examples.stories.tsx';
-
-import {
- V8BasicExample,
- V8SnappingExample,
- V8ControlledExample,
- V8FormattedValueExample,
-} from './Sliderv8Examples.stories';
-import {
- V9BasicExample,
- V9SnappingExample,
- V9ControlledExample,
- V9FormattedValueExample,
-} from './Sliderv9Examples.stories';
-
-
-
-# Slider Migration
-
-Fluent UI V8 provides the `Slider` control to represents an input that allows user to choose a value from within a specific range.
-Fluent UI v9 provides a `Slider` control with a different API.
-
-## Examples
-
-### Basic Migration
-
-Basic usage of `Slider` V8
-
-
-
-An equivalent `Slider` in v9 is
-
-
-
-## Props Mapping
-
-## Migration from v8
-
-- `ariaLabel` => use `aria-label` instead
-- `ariaValueText` => explicitely set `aria-valuetext`
-- `buttonProps` => Slider props, other than className and id, are passed to `input` element
-- `componentRef` => use `ref` instead.
-- `inline` => use css, or wrap in flex parent
-- `label` => Use `Label` control with `htmlFor` and `id`
-- `onChanged` => use onChange and onMouse events
-- `origin` => no longer supported
-- `originFromZero` => no longer supported
-- `ranged`, `defaultLowerValue` and `lowerValue` => Not supported. Multi value slider will be future work in separate control.
-- `showValue` and `valueFormat` => use explicitly rendered value instead
-- `snapToStep` => use `step` instead
-- `styles` => pass classNames to individual slots
-- `theme` => use `FluentProvider` HOC instead
-
-## Property mapping
-
-| v8 `Slider` | v9 `Slider` |
-| ------------------- | ---------------- |
-| | |
-| `ariaLabel` | `aria-label` |
-| `ariaValueText` | `aria-valuetext` |
-| `buttonProps` | |
-| `componentRef` | `ref` |
-| `defaultLowerValue` | |
-| `inline` | |
-| `input` | `input` |
-| `label` | |
-| `lowerValue` | |
-| `onChanged` | `onChange` |
-| `origin` | |
-| `originFromZero` | |
-| `ranged` | |
-| `showValue` | |
-| `snapToStep` | `step` |
-| `styles` | `className` |
-| `theme` | |
-| `valueFormat` | |
diff --git a/apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv8Examples.stories.tsx b/apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv8Examples.stories.tsx
deleted file mode 100644
index ee79dcb435b31..0000000000000
--- a/apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv8Examples.stories.tsx
+++ /dev/null
@@ -1,28 +0,0 @@
-import { Slider } from '@fluentui/react/lib/Slider';
-import * as React from 'react';
-
-export const V8BasicExample = () => ;
-
-export const V8SnappingExample = () => (
-
-);
-
-export const V8ControlledExample = () => {
- const [sliderValue, setSliderValue] = React.useState(0);
- const sliderOnChange = (value: number) => setSliderValue(value);
- return ;
-};
-
-export const V8FormattedValueExample = () => {
- const sliderAriaValueText = (value: number) => value + ' percent';
- const sliderValueFormat = (value: number) => value + '%';
- return (
-
- );
-};
diff --git a/apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv9Examples.stories.tsx b/apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv9Examples.stories.tsx
deleted file mode 100644
index bcf94140fb3f6..0000000000000
--- a/apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv9Examples.stories.tsx
+++ /dev/null
@@ -1,67 +0,0 @@
-import * as React from 'react';
-import { Slider, SliderProps, Label, useId, makeStyles, tokens } from '@fluentui/react-components';
-
-export const V9BasicExample = () => {
- const basicId = useId();
- return (
- <>
-
-
- >
- );
-};
-
-export const V9SnappingExample = () => {
- const snappingId = useId();
- return (
- <>
-
-
- >
- );
-};
-
-export const V9ControlledExample = () => {
- const [sliderValue, setSliderValue] = React.useState(0);
- const sliderOnChange: SliderProps['onChange'] = (ev, data) => setSliderValue(data.value);
- const controlledId = useId();
- return (
- <>
-
-
- >
- );
-};
-
-const getFormattedExampleStyles = makeStyles({
- wrapper: {
- display: 'grid',
- alignItems: 'center',
- gridTemplateColumns: '1fr auto',
- columnGap: tokens.spacingHorizontalL,
- },
-});
-
-export const V9FormattedValueExample = () => {
- const styles = getFormattedExampleStyles();
- const [sliderValue, setSliderValue] = React.useState(0);
- const sliderOnChange: SliderProps['onChange'] = (ev, data) => setSliderValue(data.value);
- const formattedId = useId();
- const sliderAriaValueText = `${sliderValue} percent`;
- const sliderValueFormat = `${sliderValue}%`;
- return (
- <>
-
-
-
- {sliderValueFormat}
-
- >
- );
-};