Skip to content
Snippets Groups Projects
Feed.js 361 B
Newer Older
  • Learn to ignore specific revisions
  • import React from 'react'
    
    ludvighillert's avatar
    ludvighillert committed
    import styles from '../styles/feed.module.css'
    import {useState, useEffect} from 'react'
    
    import Posts from '../components/Posts'
    import Post from '../components/Post'
    
    const Feed = () => {
    
    
    return(
    
    ludvighillert's avatar
    ludvighillert committed
        <div className = {styles.container} >
    
            <Posts/>
        </div>
    
    ludvighillert's avatar
    ludvighillert committed
        </div>
    
    )
    
    }
    
    export default Feed