Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.3 KB

README.NPM.MD

File metadata and controls

36 lines (27 loc) · 1.3 KB

Minecraft React

Minecraft UI components for React extracted from mcraft.fun project.

pnpm i minecraft-react

demo

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)