1---
2title: Next steps
3---
4
5import { BoxLink } from '~/ui/components/BoxLink';
6import { Brush01Icon, Settings02Icon, TableIcon } from "@expo/styleguide-icons";
7
8The following resources are useful when learning more about User Interface.
9
10<BoxLink
11  title="UI programming"
12  Icon={Brush01Icon}
13  description="Learn more about background image, using SVG, styling buttons, and so on."
14  href="/ui-programming/image-background/"
15/>
16
17<BoxLink
18  title="UI component libraries"
19  Icon={TableIcon}
20  description="Learn about different UI libraries available in Expo and React Native ecosystem."
21  href="/ui-programming/user-interface-libraries/"
22/>
23
24<BoxLink
25  title="Using TypeScript"
26  Icon={Settings02Icon}
27  description="An in-depth guide on configuring an Expo project with TypeScript."
28  href="/guides/typescript/"
29/>
30