July 2017
Intermediate to advanced
300 pages
5h 43m
English
Finally, we take care of the main section where we are going display active feed content:
./app/ts/Components/Feed.tsx
import * as React from "react";
import { Card, CardTitle, CardActions, Button, CardText } from "react-mdl";
export default class Feed extends React.Component<{}, {}> {
render(){
return (
<div className="page-content feed-index">
<div className="feed-list">
<Card shadow={0} style={{width: "100%", height: "auto", margin: "auto"}}>
<CardTitle expand style={{color: "#fff", backgroundColor: "#46B6AC"}}>
Title
</CardTitle>
<CardText>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras lobortis, mauris quis mollis porta </CardText> <CardActions border> <Button colored>Open</Button> </CardActions> ...Read now
Unlock full access