make inputError kebab-case

This commit is contained in:
Matthew Russell 2022-03-07 13:06:00 -08:00
parent 9eb75d33c9
commit 91e4c2a385
6 changed files with 4 additions and 4 deletions

View File

@ -0,0 +1 @@
export * from './input-error';

View File

@ -1,6 +1,6 @@
import { render } from '@testing-library/react'; import { render } from '@testing-library/react';
import { InputError } from './inputError'; import { InputError } from './input-error';
describe('InputError', () => { describe('InputError', () => {
it('should render successfully', () => { it('should render successfully', () => {

View File

@ -1,5 +1,5 @@
import { Story, Meta } from '@storybook/react'; import { Story, Meta } from '@storybook/react';
import { InputError } from './inputError'; import { InputError } from './input-error';
export default { export default {
component: InputError, component: InputError,

View File

@ -1 +0,0 @@
export * from './inputError';

View File

@ -6,6 +6,6 @@ export { EthereumUtils };
export { EtherscanLink } from './components/etherscan-link'; export { EtherscanLink } from './components/etherscan-link';
export { Icon } from './components/icon'; export { Icon } from './components/icon';
export { Input } from './components/input'; export { Input } from './components/input';
export { InputError } from './components/inputError'; export { InputError } from './components/input-error';
export { Select } from './components/select'; export { Select } from './components/select';
export { TextArea } from './components/text-area'; export { TextArea } from './components/text-area';