Create static UI react component for Profile
Channel accordion code addition for static UI React component
Target Repo:link
NODE JS version: 14.17.6
About
Add boilerplate code as per contribution guidelines.
Boilerplate refers to sections of code that have to be included in many places with little or no alteration. It is often used when referring to languages that are considered verbose, i.e. the programmer must write a lot of code to do minimal jobs.
Usage
Boiler plate for static UI react component of Profile .
Dependancies
-
Create a react app using following command.
npx-create-react-app <project name>
-
Installed prettier using the following command.
npm install --save-dev --save-exact prettier
-
Created an empty config file using the following command to let editors and other tools know that Prettier is being used.
echo {}> .prettierrc
-
Configure the .prettierrc as follows:
{ "tabWidth": 2, "useTabs": false }
-
To help speed up productivity in React projects and stop copying, pasting, and renaming files each time you want to create a new component.Install generate-react-cli.
npm i generate-react-cli
-
To run it using npx use following command.
npx generate-react-cli component <name of component>
-
Its configuration is as follows:
{
"usesTypeScript": false,
"usesCssModule": true,
"cssPreprocessor": "scss",
"testLibrary": "None",
"component": {
"default": {
"path": "src/components",
"withStyle": true,
"withTest": true,
"withStory": true,
"withLazy": true
}
}
}
-
Install ant design
npm install antd
-
Install react fontawsome using following commands
npm install --save @fortawesome/react-fontawesome
npm install --save @fortawesome/free-regular-svg-icons
Setup for running the development version
-
Open the index.js file & Uncomment the "Development code" part & comment on the "Production Code" part.
-
Run npm start
.
Initializing Storybook
To get started installing Storybook, run:
npx -p @storybook/cli sb init
npm run storybook
Open http://localhost:6006 to view it in the browser.
Installation
- Open your terminal and clone the repo using the following command
git@gitlab.com:Talking-DB/coding/pocs/ui-components/profile/hc-inbox-chat-profile.git
- Install npm using the following command.
npm install
- Runs the app in development mode.
npm start
Open http://localhost:3000 to view it in the browser.