UNPKG

@plan-three/material-ui-autosuggest

Version:
13 lines (10 loc) 251 B
import React from 'react' import Paper from 'material-ui/Paper' export default function renderSuggestionsContainer(options) { const { containerProps, children } = options return ( <Paper {...containerProps} square> {children} </Paper> ) }