-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix error module action not found in app.js
- Loading branch information
Showing
3 changed files
with
22 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export { default as Article } from './article/article' | ||
export { default as Brand } from './brand/Brand' | ||
export { default as Actions } from './actions/Actions' | ||
export { default as Action } from './actions/action' | ||
export { default as Navbar } from './navbar/Navbar' | ||
export { default as Features } from './features/Features' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export { default as Blog } from './blog/Blog'; | ||
export { default as Footer } from './footer/Footer'; | ||
export { default as Header } from './header/Header'; | ||
export { default as Features } from './features/Features'; | ||
export { default as WhatIA } from './whatAICOMDEV1/WhatIA'; | ||
export { default as Posibilities } from './possib/Possibilities'; |