Skip to content

Commit

Permalink
chore(a-router): file input can't work
Browse files Browse the repository at this point in the history
  • Loading branch information
lanziwen committed May 18, 2020
1 parent d3c6738 commit 02cc9c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/a-router/a-router.showcase.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "./a-router";
const demoResult = (result) => () =>
new Promise((resolve) => setTimeout(resolve, 1000, { default: result }));

const result1 = demoResult((props) => <h3>Home</h3>);
const result1 = demoResult((props) => <div><input type="file" name='ddd'/>Home</div>);

const result2 = demoResult((props) => <h3>Config</h3>);

Expand Down

0 comments on commit 02cc9c0

Please sign in to comment.