This repository has been archived on 2026-07-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cloud-reader/mobile/src/screens/AuthFormError.tsx
T
crisleo94 22ded87250 feat: implement mobile reader
- implement mobile epub reader
2026-06-20 13:33:44 -05:00

12 lines
331 B
TypeScript

import { type ReactNode } from "react";
import { View, Text } from "react-native";
import { authStyles } from "./authStyles";
export function AuthFormError({ message }: { message: string }): ReactNode {
return (
<View style={authStyles.errorBox}>
<Text style={authStyles.errorText}>{message}</Text>
</View>
);
}