Reactstrap Core Feed

-
Pro Component

On the World Wide Web, a web feed is a data format used for providing users with frequently updated content.


Description

We’ve made the following feed component using various reactstrap components, and Bootstrap classes and also some custom scss/css classes.

Example

Since this component was created with the thought of expanding on small part of the screen, you should also take a look at our live preview, where we’ve used some layout components here.

Activity feed
...
John Snow3 days ago

Personal profiles are the perfect way for you to grab their attention and persuade recruiters to continue reading your CV because you’re telling them from the off exactly why they should hire you.

...
.........
and 30+ more
...
Michael Lewis

You have the opportunity to play this game of life you need to appreciate every moment. A lot of people don’t appreciate the moment until it’s passed.

...
Jessica Stones

I always felt like I could do anything. That’s the main thing people are controlled by! Thoughts- their perception of themselves! They're slowed down.

...
import React from "react";

// reactstrap components
// import {
//
// } from "reactstrap";

// Core Components
import ActivityFeed from "components/feed/ActivityFeed.js";

function Example() {
  return (
    <>
      <ActivityFeed />
    </>
  );
}

export default Example;

Note

You should note, that none of the bellow components are dynamic, as we do not know what your end use case will be. Feel free to change it, add your own props and dynamic code.