import Compatibility from "../\_compatibility.mdx" import Usage from "../\_usage.mdx" # Container :::caution NativeWind's default breakpoints are not yet designed for native devices and still uses the web defaults. ::: ## Usage ## Example ```SnackPlayer name=Container import { Text, View } from 'react-native'; import { styled } from 'nativewind'; const StyledView = styled(View) const StyledText = styled(Text) const App = () => { return ( Try resizing me! 🎉 ); } ``` ## Compatibility