Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 803 Bytes

README.NPM.MD

File metadata and controls

32 lines (25 loc) · 803 Bytes

Minecraft React

yarn add minecraft-react

Usage

import { Scoreboard } from 'minecraft-react'

const App = () => {
  return (
    <Scoreboard
      open
      title="Scoreboard"
      items={[
        { name: 'Player 1', value: 10 },
        { name: 'Player 2', value: 20 },
        { name: 'Player 3', value: 30 },
      ]}
    />
  )
}

See Storybook or Storybook (Mirror link) for more examples and full components list. Also take a look at the full standalone example.

There are two types of components:

  • Small UI components or HUD components
  • Full screen components (like sign editor, worlds selector)