10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
import { TextCustom, ViewWrapper } from "@/components";
|
|
|
|
export default function Notifications() {
|
|
return (
|
|
<ViewWrapper>
|
|
<TextCustom>Notifications</TextCustom>
|
|
</ViewWrapper>
|
|
);
|
|
}
|