roko-date-picker
Version:
A simple single/multi date picker
30 lines (29 loc) • 921 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const react_native_1 = require("react-native");
const react_1 = __importDefault(require("react"));
const CellContainer = ({ index, children, ...rest }) => {
// #region members
// #endregion
// #region states
// #endregion
// #region custom hooks
// #endregion
// #region functions
// #endregion
// #region effects
// #endregion
// #region variables
// #endregion
return (<react_native_1.Pressable {...rest} style={[rest.style, styles.root]}>
{children}
</react_native_1.Pressable>);
};
exports.default = CellContainer;
CellContainer.displayName = "CellContainer";
const styles = react_native_1.StyleSheet.create({
root: { zIndex: 1 },
});