Files
cally/components/pages/settings/user_settings_views/GroupsList.tsx
2024-09-19 21:38:37 +02:00

13 lines
198 B
TypeScript

import { View, Text } from "react-native";
import React from "react";
const GroupsList = () => {
return (
<View>
<Text>GroupsList</Text>
</View>
);
};
export default GroupsList;