feat: implement mobile reader

- implement mobile epub reader
This commit is contained in:
2026-06-20 13:33:44 -05:00
parent 84c0497f21
commit 22ded87250
41 changed files with 3184 additions and 1111 deletions
+11
View File
@@ -0,0 +1,11 @@
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>
);
}