Files
q-support/src/pages/Home/Home.tsx
QortalSeth 66b9fb8b6b Index.ts refactored into Identifiers.ts and Categories.ts for more clarity
Some references to Q-Tube in code replaced with Q-Share

Characters allowed in Publish Titles added to constants/Misc.ts, more characters are allowed than before

User Search Label now says "User's Exact Name" to communicate that users must be precise about what names they search for

Search and Name Search now can perform searches by hitting enter instead of clicking on Search Button
2024-01-03 10:01:20 -07:00

16 lines
240 B
TypeScript

import React from 'react'
import { FileList } from './FileList.tsx'
import { useSelector } from 'react-redux'
import { RootState } from '../../state/store'
export const Home = () => {
return (
<>
<FileList />
</>
)
}