import React from "react"; import { View } from "react-native"; import {connect} from "react-redux"; //assets import tw from "tailwind-rn"; import Colors from "../constants/Colors"; function Progress({ percent, alignItems, theme }) { return ( <> // // // ); } const mapStateToProps = (state) => ({ theme: state.publicApi.theme, }) export default connect(mapStateToProps)(Progress);