/*! Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. */
import * as React from 'react';
import Screener from 'screener-storybook/src/screener';
import { storiesOf } from '@storybook/react';
import { SearchBox, Fabric } from '@fluentui/react-next';
import { FabricDecorator } from '../utilities';
// FabricDecorator isn't added at the top level so that the full SearchBox can be rendered without a parent div
storiesOf('SearchBox Next', module)
.addDecorator(FabricDecorator)
.addDecorator(story => (
{story()}
))
.addStory(
'Root',
() => (
),
{ rtl: true },
)
.addStory(
'Full',
() => (
),
{ rtl: true },
);