Added loader + Improvements.

This commit is contained in:
Daniel
2022-06-03 11:56:19 +04:30
parent 1d23855eac
commit c5104f432c
17 changed files with 298 additions and 28 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from 'react'
const NoResults = () => {
return (
<div className='no-results'>
<h1>¯\_()_/¯</h1>
<p>Nothing found.</p>
</div>
)
}
export default NoResults;