Typing
This commit is contained in:
parent
92c93134d6
commit
a04c511032
|
@ -7,7 +7,7 @@ import TopicsList from '../topicsList';
|
|||
import ProjectsList from '../projectsList';
|
||||
import SearchBar from '../searchBar';
|
||||
import SearchResults from '../searchResults';
|
||||
import { InterviewsData, Questions } from '../../data/archives/interviews-data';
|
||||
import { InterviewsData, Questions } from '../../data/archives/interviews';
|
||||
import './style.scss';
|
||||
|
||||
class BrowseArchives extends React.Component {
|
||||
|
|
|
@ -7,7 +7,7 @@ const SearchResults = (props) => {
|
|||
if (!props.data || props.data[0] === null) {
|
||||
return <div>Loading...</div>;
|
||||
} else if (props.data.length < 1) {
|
||||
return <div> No results found </div>;
|
||||
return <div>No results found</div>;
|
||||
}
|
||||
|
||||
// sort array alphabetically
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue