11 lines
193 B
JavaScript
Raw Normal View History

2018-07-06 13:47:25 +02:00
import React from 'react';
import './style.scss';
2018-07-06 14:36:22 +02:00
const SearchResults = () => (
2018-07-06 13:47:25 +02:00
<div className="search-results">
<p>Search results go here</p>
</div>
);
export default SearchResults;