1// Test that the global CSS is statically extracted
2import { Text } from 'react-native';
3
4import '../global.css';
5import { unstable_styles } from '../test.module.css';
6
7export default function Page() {
8  return (
9    <Text testID="styled-text" style={unstable_styles.text}>
10      Hello World
11    </Text>
12  );
13}
14