From ccdf68bdeae8e5a41f7c8d93fcb8be65d8da5627 Mon Sep 17 00:00:00 2001 From: Kinzume <81969626+Kinzume@users.noreply.github.com> Date: Tue, 6 Dec 2022 15:48:19 +0000 Subject: [PATCH] docs(component-library): Fix typo in table (#48675) Fix typo in table --- docs/how-to-work-on-the-component-library.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/how-to-work-on-the-component-library.md b/docs/how-to-work-on-the-component-library.md index 90a78cf2581..26ecf5710ba 100644 --- a/docs/how-to-work-on-the-component-library.md +++ b/docs/how-to-work-on-the-component-library.md @@ -35,13 +35,13 @@ npm run gen-component MyComponent The command will generate a new folder inside the `ui-components` directory, with the following files: -| File name | Purpose | -| -------------------------- | ------------------------------------------------------ | -| `index.ts` | It is used for exporting the component and its types. | -| `my-component.stories.tsx` | It is used for demoing the component on Storybook. | -| `my-component.test.tsx` | It is a test file. | -| `my-component.tsx` | It is where we implement the component. | -| `types.ts` | Is is where we locate component's interface and types. | +| File name | Purpose | +| -------------------------- | ---------------------------------------------------------- | +| `index.ts` | It is used for exporting the component and its types. | +| `my-component.stories.tsx` | It is used for demoing the component on Storybook. | +| `my-component.test.tsx` | It is a test file. | +| `my-component.tsx` | It is where we implement the component. | +| `types.ts` | It is where we locate the component's interface and types. | Each component is different, but in general a component should: