Skip to content

Commit 994fe51

Browse files
committed
fixed test after bad merge
1 parent e6ecd2e commit 994fe51

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/react-core/src/components/Toolbar/examples/ToolbarContentWrap.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import React from 'react';
1+
import { Fragment } from 'react';
22
import { Toolbar, ToolbarItem, ToolbarContent } from '@patternfly/react-core';
33
import { Button, SearchInput } from '@patternfly/react-core';
44

55
export const ToolbarItems: React.FunctionComponent = () => {
66
const items = (
7-
<React.Fragment>
7+
<Fragment>
88
<ToolbarItem>
99
<SearchInput aria-label="Items example search input" />
1010
</ToolbarItem>
@@ -24,7 +24,7 @@ export const ToolbarItems: React.FunctionComponent = () => {
2424
<ToolbarItem>
2525
<Button variant="primary">Action</Button>
2626
</ToolbarItem>
27-
</React.Fragment>
27+
</Fragment>
2828
);
2929

3030
return (

0 commit comments

Comments
 (0)