mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
14 lines
297 B
JavaScript
14 lines
297 B
JavaScript
import React from "react"
|
|
|
|
export default (props) => {
|
|
const [searchValue, setSearchValue] = React.useState("")
|
|
const [results, setResults] = React.useState([])
|
|
|
|
|
|
return <div className="unsplashBrowser">
|
|
<h1>Search in Unsplash™</h1>
|
|
<div>
|
|
|
|
</div>
|
|
</div>
|
|
} |