Cleaner code with prettier.

This commit is contained in:
Daniel
2022-06-16 13:43:44 +04:30
parent e2db7e71ac
commit 10d3a05c1d
32 changed files with 1021 additions and 754 deletions
+7 -7
View File
@@ -1,12 +1,12 @@
import React from 'react'
import React from "react";
const NoResults = () => {
return (
<div className='no-results'>
<h1>¯\_()_/¯</h1>
<p>Nothing found.</p>
<div className="no-results">
<h1>¯\_()_/¯</h1>
<p>Nothing found.</p>
</div>
)
}
);
};
export default NoResults;
export default NoResults;