We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 469cf18 commit 0153812Copy full SHA for 0153812
1 file changed
src/stories/Default.stories.tsx
@@ -22,16 +22,7 @@ export const Basic = () => {
22
<Link href="./exampleFile.csv" border="2px solid #718096" p="8px" borderRadius="8px" download="exampleCSV">
23
Download example file
24
</Link>
25
- <ReactSpreadsheetImport
26
- {...mockRsiValues}
27
- isOpen={isOpen}
28
- onClose={onClose}
29
- onSubmit={setData}
30
- uploadStepHook={async () => {
31
- throw new Error("Hello")
32
- return undefined as any
33
- }}
34
- />
+ <ReactSpreadsheetImport {...mockRsiValues} isOpen={isOpen} onClose={onClose} onSubmit={setData} />
35
{!!data && (
36
<Box pt={64} display="flex" gap="8px" flexDirection="column">
37
<b>Returned data (showing first 100 rows):</b>
0 commit comments