import React from 'react';
import { Stack } from 'expo-router';
import { StatusBar } from 'expo-status-bar';
/**
* Layout for test screens
*
* This allows us to have multiple test screens in the test directory
* for trying out different features in isolation.
*
* Each test page should include its own providers as needed, rather than
* relying on providers in this layout, to avoid conflicts with the app's
* global settings.
*/
export default function TestLayout() {
return (
<>
>
);
}