expo-router
Version:
Expo Router is a file-based router for React Native and web applications.
14 lines • 621 B
JavaScript
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Head = void 0;
const react_1 = __importDefault(require("react"));
const react_native_helmet_async_1 = require("react-native-helmet-async");
const Head = ({ children }) => {
return <react_native_helmet_async_1.Helmet>{children}</react_native_helmet_async_1.Helmet>;
};
exports.Head = Head;
exports.Head.Provider = react_native_helmet_async_1.HelmetProvider;
//# sourceMappingURL=ExpoHead.js.map
;