UNPKG

core-resource-app-test

Version:

App that contains assets and scripts for the core apps

17 lines (15 loc) 416 B
import PropTypes from 'prop-types'; import React, { Component } from 'react'; import styles from '../header-bar-styles'; export default class SearchResultsList extends Component { render() { return ( <div style={styles.searchResultList}> {this.props.children} </div> ); } } SearchResultsList.propTypes = { children: PropTypes.array.isRequired, };