chore(ui-components): rename HelpBlock files to kebab-case (#45849)

This commit is contained in:
Huyen Nguyen
2022-05-03 21:07:08 +07:00
committed by GitHub
parent 0895925520
commit cf68bd0efd
5 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
import React from 'react';
import { Story } from '@storybook/react';
import { HelpBlock } from './helpblock';
import { HelpBlock } from './help-block';
import { HelpBlockProps } from './types';
const story = {

View File

@@ -1,6 +1,6 @@
import { render, screen } from '@testing-library/react';
import React from 'react';
import { HelpBlock } from './helpblock';
import { HelpBlock } from './help-block';
describe('Render the helpblock component', () => {
it('should render the helpblock component', () => {

View File

@@ -1,2 +1,2 @@
export { HelpBlock } from './helpblock';
export { HelpBlock } from './help-block';
export type { HelpBlockProps } from './types';