mirror of
https://github.com/urosran/cally.git
synced 2025-07-15 17:47:08 +00:00
13 lines
198 B
TypeScript
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;
|