A library to help developers implement content syndication.
npm install syndicus
"use client"
import { DevTo, Title, Content } from "syndicus"
const Article = () => {
return (
// Replace {POST_ID} by the Post ID of the post published on DEV.to
<DevTo article="{POST_ID}">
<Title />
<Content />
</DevTo>
)
}
export default Article
- DEV.to
- Article
The short-term roadmap is defined by the issues open. If you want something implemented, make sure to open a issue in this repository.