From c538e66714be6f6b61a076cb13b2972b9179030b Mon Sep 17 00:00:00 2001 From: Bene_Tesla <78994881+benetesla@users.noreply.github.com> Date: Tue, 10 Jan 2023 17:14:58 -0300 Subject: [PATCH] Fix error module action not found in app.js --- src/App.js | 18 +++++++++++++++--- src/components/index.js | 2 +- src/containers/index.js | 6 ++++++ 3 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 src/containers/index.js diff --git a/src/App.js b/src/App.js index d487814..844a01d 100644 --- a/src/App.js +++ b/src/App.js @@ -1,9 +1,21 @@ import React from 'react' -import { Article,Brand, Actions } from './components' + +import { Footer, Blog,Header, Features, WhatIA, Posibilities } from './containers' +import { Brand,Action, Navbar } from './components' const App = () => { return ( -
-

AI_COM_DEV

+
+
+ +
+
+ + + + + + +
) } diff --git a/src/components/index.js b/src/components/index.js index 9ec8e1b..1b21ec7 100644 --- a/src/components/index.js +++ b/src/components/index.js @@ -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' \ No newline at end of file diff --git a/src/containers/index.js b/src/containers/index.js new file mode 100644 index 0000000..070d633 --- /dev/null +++ b/src/containers/index.js @@ -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'; \ No newline at end of file