Skip to content

Commit

Permalink
Fix error module action not found in app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Benevanio committed Jan 10, 2023
1 parent fe708a6 commit c538e66
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
18 changes: 15 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -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 (
<div>
<h1>AI_COM_DEV</h1>
<div className='App'>
<div className='gradient'>
<Navbar />
<Header />
</div>
<Brand />
<WhatIA />
<Features />
<Posibilities />
<Action />
<Blog />
<Footer />
</div>
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/index.js
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'
6 changes: 6 additions & 0 deletions src/containers/index.js
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';

0 comments on commit c538e66

Please sign in to comment.