Dear Sirs and Madams!

I have following code chunk:
Qt Code:
  1. import QtQuick 2.3
  2. import QtQuick.Window 2.1
  3. import QtQuick.Controls 1.2
  4. import QtQuick.Controls.Styles 1.2
  5. import QtQuick.Layouts 1.1
  6.  
  7. import "components"
  8.  
  9. ApplicationWindow
  10. {
  11. id: fsaWindowMain
  12.  
  13. property int fsaWindowWidth: 800
  14. property int fsaWindowHeight: 400
  15. property int fsaSpacingHoriz: 8
  16. property int fsaSpacingVert: 8
  17. property int fsaToolBarHeight: 48
  18.  
  19. visible: true
  20.  
  21. width: fsaWindowWidth
  22. height: fsaWindowHeight
  23.  
  24. color: "black"
  25.  
  26. toolBar: fsaToolbarMain
  27. statusBar: fsaStatusBarMain
  28.  
  29. ToolBar
  30. {
  31. id: fsaToolbarMain
  32.  
  33. width: parent.width
  34. height: fsaToolBarHeight
  35.  
  36. fsaMenuItem
  37. {
  38. fsaMenuItemWidth: width
  39. fsaMenuItemHeight: height
  40. fsaMenuItemRadius: 32
  41. fsaMenuItemText: "text1"
  42. }
  43. }
  44.  
  45. StatusBar
  46. {
  47. id: fsaStatusBarMain
  48.  
  49. width: parent.width
  50. height: fsaToolbarMain.height
  51. }
  52. }
To copy to clipboard, switch view to plain text mode 
Now, fsaMenuItem is declared in fsaMenuItem.qml in components subdir:
Qt Code:
  1. import QtQuick 2.0
  2.  
  3. Rectangle
  4. {
  5. id: fsaMenuItem
  6.  
  7. property int fsaMenuItemWidth: 128
  8. property int fsaMenuItemHeight: parent.height
  9. property int fsaMenuItemRadius: 32
  10. property string fsaMenuItemText: ""
  11.  
  12. width: fsaMenuItemWidth
  13. height: fsaMenuItemHeight
  14.  
  15. radius: fsaMenuItemRadius
  16.  
  17. Text
  18. {
  19. color: "white"
  20. text: qsTr(fsaMenuItemText)
  21. }
  22.  
  23. color: "black"
  24. }
To copy to clipboard, switch view to plain text mode 
And the directory hierhcary is as follows:dirHierchary.PNGWhy does import clause does not import fsaMenuItem?