We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6ecd2e commit 994fe51Copy full SHA for 994fe51
packages/react-core/src/components/Toolbar/examples/ToolbarContentWrap.tsx
@@ -1,10 +1,10 @@
1
-import React from 'react';
+import { Fragment } from 'react';
2
import { Toolbar, ToolbarItem, ToolbarContent } from '@patternfly/react-core';
3
import { Button, SearchInput } from '@patternfly/react-core';
4
5
export const ToolbarItems: React.FunctionComponent = () => {
6
const items = (
7
- <React.Fragment>
+ <Fragment>
8
<ToolbarItem>
9
<SearchInput aria-label="Items example search input" />
10
</ToolbarItem>
@@ -24,7 +24,7 @@ export const ToolbarItems: React.FunctionComponent = () => {
24
25
<Button variant="primary">Action</Button>
26
27
- </React.Fragment>
+ </Fragment>
28
);
29
30
return (
0 commit comments