# create-component/create-package documentation RFC Please review and comment for the following documentation to be added to use create-component script ## Scripts/Utils ## create-package This utility script will scafold out a new package within the Fluent UI monorepo. You can use this to create either a utility node package or a fluent ui package to host components. This is the recomended approach to setup a new package. The scafold will be generated under `packages/{packageName}` When choosing a react package, you will have the option to scafold storybook files related to the package under the `packages/react-examples/src/{packageName}` ***Recommended***. **Usage:** `$ yarn create-package` *Notes:* The current naming convention for fluent react packages is **react-{packageName}** ## create-component This utility script creates a new react component for a Fluent UI package created by `create-package`. It will automatically update the package to incorpoarate the new component, and add storybook integration. Once the component is created, you will be able to run `yarn start`, select the package where the component was created and see the stubbed component in storybook. **Usage:** `$ yarn create-component`