mirror of
https://github.com/HSLdevcom/digitransit-ui
synced 2025-07-06 01:00:37 +02:00
13 lines
321 B
JavaScript
13 lines
321 B
JavaScript
import React from 'react';
|
|
import { matchShape } from 'found';
|
|
import EmbeddedSearch from './EmbeddedSearch';
|
|
|
|
const EmbeddedSearchContainer = props => {
|
|
return <EmbeddedSearch match={props.match} />;
|
|
};
|
|
|
|
EmbeddedSearchContainer.propTypes = {
|
|
match: matchShape.isRequired,
|
|
};
|
|
|
|
export default EmbeddedSearchContainer;
|