diff --git a/components/doc/multiselect/loadingdoc.js b/components/doc/multiselect/loadingdoc.js index 120219430c..cd8e728957 100644 --- a/components/doc/multiselect/loadingdoc.js +++ b/components/doc/multiselect/loadingdoc.js @@ -3,11 +3,11 @@ import { DocSectionText } from '@/components/doc/common/docsectiontext'; import { MultiSelect } from '@/components/lib/multiselect/MultiSelect'; export function LoadingDoc(props) { - const code = { - basic: ` + const code = { + basic: ` `, - javascript: ` + javascript: ` import React from "react"; import { MultiSelect } from 'primereact/multiselect'; @@ -19,7 +19,7 @@ export default function LoadingDemo() { ); } `, - typescript: ` + typescript: ` import React from "react"; import { MultiSelect } from 'primereact/multiselect'; @@ -31,19 +31,19 @@ export default function LoadingDemo() { ); } ` - }; + }; - return ( - <> - -

- Loading state can be used loading property. -

-
-
- -
- - - ); + return ( + <> + +

+ Loading state can be used loading property. +

+
+
+ +
+ + + ); }