mirror of
https://github.com/status-im/ETHReport.git
synced 2025-03-03 23:20:27 +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;
|