@wpmudev/react-post
v1.1.9
Published
WPMU DEV Shared UI React Post Component
Downloads
32
Keywords
Readme
Post
Post is a component that quick shows WPMU DEV blog posts.
This component must be used with Tutorials component only. It is not optimized to work without it.
Installation
npm i @wpmudev/react-post --save-dev
Usage
Javascript Instantiation
import React from 'react';
import {
Post
} from '@wpmudev/react-post';
const MyApp = () => {
return (
<Post
title="Post Title"
excerpt="The big brown fox jumps over the lazy dog."
/>
);
}