Skip to content

Commit

Permalink
add regression test
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Apr 10, 2021
1 parent f775e62 commit c23170f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions test/regressions/fixtures/Autocomplete/StandardAutocomplete.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import * as React from 'react';
import TextField from '@material-ui/core/TextField';
import Autocomplete from '@material-ui/core/Autocomplete';

export default function StandardAutocomplete() {
return (
<div style={{ width: 300 }}>
<Autocomplete
options={[]}
renderInput={(params) => (
<TextField {...params} label="Standard autocomplete" variant="standard" />
)}
/>
</div>
);
}

0 comments on commit c23170f

Please sign in to comment.