0.1.1 • Published 8 months ago

@eanair/react-components v0.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

@eanair/react-components

Static Badge

TypeScript React components library created for personal use. (개인적인 용도로 사용하기 위해 제작한 리액트 컴포넌트 라이브러리입니다.)

Installation (for standard modern project)

npm install @eanair/react-components
# or
yarn add @eanair/react-components

Example usage

import { CodeBlock } from "@eanair/react-components";

function SomeComponent() {
  const content = `
    console.log("hello world!");
  `;

  return (
    <div style={{ width: "300px" }}>
      <CodeBlock code={text} />
    </div>
  );
}

Example result codeblock

0.1.1

8 months ago

0.1.0

8 months ago

0.0.1

8 months ago