# Application Layout Framework (ALF) ```tsx import {View} from 'react-native' import {atoms, useTheme, useBreakpoints, web} from '#/alf' import {H3, Text} from '#/view/com/Typography' function App() { const theme = useTheme() const breakpoints = useBreakpoints() return (

I'm the blue color

{breakpoints.gtMobile && ( Only visible on tablet and above! )}
) } ```