refactor: organize pages into folders
This commit is contained in:
14
src/pages/Browse/index.tsx
Normal file
14
src/pages/Browse/index.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { MessageStream } from "../../components/messageStream/MessageStream";
|
||||
import { useI18n } from "../../i18n";
|
||||
|
||||
export function Browse() {
|
||||
const { t } = useI18n();
|
||||
return (
|
||||
<section className="space-y-3">
|
||||
<h1 className="mx-auto max-w-full px-3 text-2xl font-bold md:max-w-[820px] lg:max-w-[1080px] xl:max-w-[1180px]">
|
||||
{t("all")}
|
||||
</h1>
|
||||
<MessageStream scope={{ kind: "all" }} />
|
||||
</section>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user