UNPKG

@tailwindcss/typography

Version:

A Tailwind CSS plugin for automatically styling plain HTML content with beautiful typographic defaults.

13 lines (10 loc) 243 B
import 'tailwindcss/tailwind.css' import React from 'react' import App from 'next/app' class MyApp extends App { render() { const { Component, pageProps } = this.props return <Component {...pageProps} /> } } export default MyApp