ebanutsya

This commit is contained in:
2023-10-27 06:03:46 +03:00
parent 4f25112b5e
commit 37d3fb5a78
34 changed files with 831 additions and 17841 deletions

View File

@@ -0,0 +1,9 @@
import {FC} from "react";
import {responsiveHeight} from "react-native-responsive-dimensions";
import {View} from "react-native";
const FlashListSeparator: FC = () => {
return (<View
style={{flex: 1, height: responsiveHeight(2)}}></View>);
}
export default FlashListSeparator;