Skip to content

Commit 99c273e

Browse files
committed
Update JSDoc
1 parent eb2e343 commit 99c273e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/Alert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export namespace AlertProps {
6565
export type Severity = ExtractSeverity<FrClassName>;
6666
}
6767

68-
/** @see <https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/alerte> */
68+
/** @see <https://react-dsfr-components.etalab.studio/?path=/docs/components-alert> */
6969
export const Alert = memo(
7070
forwardRef<HTMLDivElement, AlertProps>((props, ref) => {
7171
const {

src/DarkModeSwitch.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export type DisplayProps = {
1414
className?: string;
1515
};
1616

17+
/** @see <https://react-dsfr-components.etalab.studio/?path=/docs/components-darkmodeswitch> */
1718
export const DarkModeSwitch = memo(
1819
forwardRef<HTMLButtonElement, DisplayProps>((props, ref) => {
1920
const { className, ...rest } = props;

src/Tabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export namespace TabsProps {
4141
};
4242
}
4343

44-
/** @see <https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/onglets> */
44+
/** @see <https://react-dsfr-components.etalab.studio/?path=/docs/components-tabs> */
4545
export const Tabs = memo(
4646
forwardRef<HTMLDivElement, TabsProps>((props, ref) => {
4747
const {

0 commit comments

Comments
 (0)