-
Notifications
You must be signed in to change notification settings - Fork 829
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move file uploader basic stories to proper folder (#5352)
- Loading branch information
Showing
11 changed files
with
41 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
src/file-uploader-basic/__tests__/file-uploader-basic.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
Copyright (c) Uber Technologies, Inc. | ||
This source code is licensed under the MIT license found in the | ||
LICENSE file in the root directory of this source tree. | ||
*/ | ||
import React from 'react'; | ||
import { Scenario as FileUploaderBasicDisabled } from './file-uploader-basic-disabled.scenario'; | ||
import { Scenario as FileUploaderBasicError } from './file-uploader-basic-error.scenario'; | ||
import { Scenario as FileUploaderBasicPostDrop } from './file-uploader-basic-post-drop.scenario'; | ||
import { Scenario as FileUploaderBasicPreDrop } from './file-uploader-basic-pre-drop.scenario'; | ||
import { Scenario as FileUploaderBasicProgressBar } from './file-uploader-basic-progress-bar.scenario'; | ||
import { Scenario as FileUploaderBasicSpinner } from './file-uploader-basic-spinner.scenario'; | ||
import { Scenario as FileUploaderBasicDefault } from './file-uploader-basic.scenario'; | ||
|
||
export const Disabled = () => <FileUploaderBasicDisabled />; | ||
export const Error = () => <FileUploaderBasicError />; | ||
export const PostDrop = () => <FileUploaderBasicPostDrop />; | ||
export const PreDrop = () => <FileUploaderBasicPreDrop />; | ||
export const ProgressBar = () => <FileUploaderBasicProgressBar />; | ||
export const Spinner = () => <FileUploaderBasicSpinner />; | ||
export const FileUploader = () => <FileUploaderBasicDefault />; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// @ts-nocheck | ||
/* | ||
Copyright (c) Uber Technologies, Inc. | ||
|