Custom components are great for breaking up your code within your Flex application into sub-parts of your application.
To add a custom component you will need to add it as an xml namespace in the parent’s root tag.
Within the src folder I created a folder called Assets, and within that folder I created a folder called components
Here is the line of code that you need to add to allow Flex to use your custom components.
xmlns:components="Assets.components.*"
