Skip to content

Commit

Permalink
Add containers for my app
Browse files Browse the repository at this point in the history
  • Loading branch information
Benevanio committed Jan 10, 2023
1 parent 91989ab commit fe708a6
Show file tree
Hide file tree
Showing 14 changed files with 61 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'

import { Article,Brand, Actions } from './components'
const App = () => {
return (
<div>
Expand Down
5 changes: 5 additions & 0 deletions src/components/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +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 Navbar } from './navbar/Navbar'
export { default as Features } from './features/Features'
9 changes: 9 additions & 0 deletions src/containers/blog/Blog.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'
import './Blog.scss'
const Blog = () => {
return (
<div>Blog</div>
)
}

export default Blog
1 change: 1 addition & 0 deletions src/containers/blog/Blog.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

9 changes: 9 additions & 0 deletions src/containers/features/Features.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'
import './Features.scss'
const Features = () => {
return (
<div>Features</div>
)
}

export default Features
Empty file.
9 changes: 9 additions & 0 deletions src/containers/footer/Footer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'
import './Footer.scss'
const Footer = () => {
return (
<div>Footer</div>
)
}

export default Footer
Empty file.
9 changes: 9 additions & 0 deletions src/containers/header/Header.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'
import './Header.scss'
const Header = () => {
return (
<div>Header</div>
)
}

export default Header
Empty file.
9 changes: 9 additions & 0 deletions src/containers/possib/Possibilities.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'
import './Possibilities.scss'
const Possibilities = () => {
return (
<div>Possibilities</div>
)
}

export default Possibilities
Empty file.
Empty file.
9 changes: 9 additions & 0 deletions src/containers/whatAICOMDEV1/WhatIA.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'
import './WHATAI.scss'
const WhatIA = () => {
return (
<div>WhatIA</div>
)
}

export default WhatIA

0 comments on commit fe708a6

Please sign in to comment.