digitransit-ui/app/component/embedded/EmbeddedSearchContainer.js
2025-05-27 18:27:46 +03:00

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;