diff --git a/src/alf/README.md b/src/alf/README.md index ae1f4c0d28..5f602c8d33 100644 --- a/src/alf/README.md +++ b/src/alf/README.md @@ -1,24 +1 @@ # 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! - )} -
- ) -} -```