12 lines
165 B
TypeScript
12 lines
165 B
TypeScript
import { Text, View } from "react-native";
|
|
|
|
export default function Forum() {
|
|
return (
|
|
<>
|
|
<View>
|
|
<Text>Forum</Text>
|
|
</View>
|
|
</>
|
|
);
|
|
}
|