1.1.1 • Published 5 years ago

@muhammad.zeeshan/elegant-text v1.1.1

Weekly downloads
-
License
ISC
Repository
github
Last release
5 years ago

ElegentTest

This is a React based implementation to create and publish NPM packages. The basic usage is outlined below.

Usage

First install the library

npm i @muhammad.zeeshan/elegant-text

After this you can import and use the component.

import React from 'react';
import { ElegantHeading } from "@muhammad.zeeshan/elegant-text";

const App: React.FC = () => {
  return (
    <div>
      <ElegantHeading>Beautiful Heading Goes Here</ElegantHeading>
    </div>
  );
}

export default App;