0.0.6 • Published 3 years ago

@pdok/pdok-discourse-integration v0.0.6

Weekly downloads
57
License
MIT
Repository
github
Last release
3 years ago

PDOK Discourse Integration

Renders a list of the 4 latest updated Discourse topics.

Prerequisites

The following tools are required:

Installation

These webcomponents can be installed using NPM:

npm install --save @pdok/pdok-discourse-integration

Usage with React

Here is an example of using webcomponents within a React application:

import React from 'react';
import { Topics } from '..';

const uri = 'https://forum.pdok.nl/c/datasets/bag.json';

export default () => (
  <Topics uri={uri}/>
);