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

17
node_modules/expo-router/rsc/entry.js generated vendored Normal file
View File

@@ -0,0 +1,17 @@
/**
* Copyright © 2024 650 Industries.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
// `@expo/metro-runtime` MUST be the first import to ensure Fast Refresh works
// on web.
import '@expo/metro-runtime';
import { renderRootComponent } from 'expo-router/build/renderRootComponent';
import { App } from 'expo-router/build/rsc/entry';
// This file should only import and register the root. No components or exports
// should be added here.
renderRootComponent(App);

8
node_modules/expo-router/rsc/headers.d.ts generated vendored Normal file
View File

@@ -0,0 +1,8 @@
import { requestHeaders } from 'expo-server';
/**
* @deprecated Use `requestHeaders` from `expo-server` instead
*/
declare const unstable_headers: () => Promise<ReturnType<typeof requestHeaders>>;
export { unstable_headers };

10
node_modules/expo-router/rsc/headers.js generated vendored Normal file
View File

@@ -0,0 +1,10 @@
import 'server-only';
import { requestHeaders } from 'expo-server';
/**
* @deprecated Use `requestHeaders` from `expo-server` instead
*/
const unstable_headers = async () => requestHeaders();
export { unstable_headers };

1
node_modules/expo-router/rsc/index.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports = require('expo-router/build/rsc/exports');

1
node_modules/expo-router/rsc/internal.js generated vendored Normal file
View File

@@ -0,0 +1 @@
export { callServerRSC } from 'expo-router/build/rsc/router/host';