Prettier pw request tab

This commit is contained in:
MrFry 2020-04-13 10:09:41 +02:00
parent 0e8f6cd2d9
commit 5b1faa5687
8 changed files with 77 additions and 14 deletions

View file

@ -1,6 +1,7 @@
import React, { PureComponent } from 'react'
import Questions from './Questions.js'
import Sleep from '../components/sleep'
import constants from '../constants.json'
@ -46,7 +47,10 @@ class QuestionSearchResult extends PureComponent {
const renderCount = () => {
return (
<div>
{searchTerm ? '' : 'Kezdj el írni kereséshez!'} {results} {searchTerm ? 'találat' : 'kérdés' } {searchTerm ? subjs.length : data.Subjects.length} tárgy
<div>
{searchTerm ? '' : 'Kezdj el írni kereséshez!'} {results} {searchTerm ? 'találat' : 'kérdés' } {searchTerm ? subjs.length : data.Subjects.length} tárgy
</div>
<Sleep />
</div>
)
}