first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
// NOTE(EvanBacon): `react-native-web` adds a extra `div`s around the root HTML, these
// make static rendering much harder as we expect the root element to be `<html>`.
// This resolution will alias to a simple in-out component to avoid the extra HTML.
function AppContainer({ children }) {
return children;
}
if (process.env.NODE_ENV !== 'production') {
AppContainer.displayName = 'AppContainer';
}
module.exports = AppContainer;
module.exports.default = AppContainer;

View File

@@ -0,0 +1,10 @@
'use strict';
function emptyFunction() {}
(exports.__esModule = !0), (exports.default = void 0);
var BackHandler = {
exitApp: emptyFunction,
addEventListener: () => ({ remove: emptyFunction }),
removeEventListener: emptyFunction,
},
_default = BackHandler;
(exports.default = _default), (module.exports = exports.default);

View File

@@ -0,0 +1,12 @@
// NOTE(EvanBacon): `react-native-web` adds a extra `div`s around the root HTML, these
// make static rendering much harder as we expect the root element to be `<html>`.
// This resolution will alias to a simple in-out component to avoid the extra HTML.
function AppContainer({ children }) {
return children;
}
if (process.env.NODE_ENV !== 'production') {
AppContainer.displayName = 'AppContainer';
}
export default AppContainer;

View File

@@ -0,0 +1,7 @@
function emptyFunction() {}
var BackHandler = {
exitApp: emptyFunction,
addEventListener: () => ({ remove: emptyFunction }),
removeEventListener: emptyFunction,
};
export default BackHandler;