npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@suyoungj/react-layout-component

v1.3.13

Published

- React에서 사용할 수 있는 레이아웃 컴포넌트를 제공하는 라이브러리입니다. - [npm](https://www.npmjs.com/package/@suyoungj/react-layout-component?activeTab=code) - [Docs](https://react-layout-component-documentation.vercel.app/)

Downloads

33

Readme

@suyoungj/react-layout-component

  • React에서 사용할 수 있는 레이아웃 컴포넌트를 제공하는 라이브러리입니다.
  • npm
  • Docs

설치

# npm
npm i @suyoungj/react-layout-component

#yarn
yarn add @suyoungj/react-layout-component

Layout

Container

  • 화면의 폭에 따라 컨텐츠의 최대 폭을 제한하고, 중앙에 배치합니다.
  • minWidth, maxWidth 프로퍼티로 너비를 조절할 수 있습니다.
<Container minWidth={300} maxWidth={960}>
  <div>Content</div>
</Container>

Flex

  • CSS Flexbox를 사용하여 자식 컴포넌트들을 유연하게 배열하는 컴포넌트입니다.
  • direction, justify, align 프로퍼티로 통해 배열 방향과 정렬을 조절할 수 있습니다.
  • gap 속성을 통해 자식 컴포넌트 간의 간격을 조절할 수 있습니다.
<Flex direction="row" justify="center" align="center" gap={5}>
  <div>Content 1</div>
  <div>Content 2</div>
  <div>Content 3</div>
</Flex>

Grid

  • rows, columns 속성을 통해 격자의 형태를 지정할 수 있습니다.
  • gap 속성을 통해 자식 컴포넌트 간의 간격을 조절할 수 있습니다.
<Grid rows={3} columns={3} gap={10}>
  <div>Content 1</div>
  <div>Content 2</div>
  <div>Content 3</div>
  <div>Content 4</div>
  <div>Content 5</div>
  <div>Content 6</div>
  <div>Content 7</div>
  <div>Content 8</div>
  <div>Content 9</div>
</Grid>

Overlay

Drawer

  • Drawer는 화면 가장자리에서 슬라이드되는 패널입니다.
  • 사용자가 현재 페이지를 벗어나지 않고 작업하거나 세부 정보를 확인해야 할 때 유용합니다.
() => {
  const [isOpen, setIsOpen] = useState(false);

  const handleClose = () => {
    setIsOpen(() => false);
  };

  return (
    <Drawer isOpen={isOpen} onClose={handleClose}>
      <h1>Drawer</h1>
    </Drawer>
  );
};