mirror of
https://github.com/status-im/ETHReport.git
synced 2025-03-03 15:10:28 +00:00
11 lines
196 B
JavaScript
11 lines
196 B
JavaScript
|
import React from 'react';
|
||
|
import './style.scss';
|
||
|
|
||
|
const SearchResults = props => (
|
||
|
<div className="search-results">
|
||
|
<p>Search results go here</p>
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
export default SearchResults;
|