Skip to content

Commit e02ec52

Browse files
committed
fix: release
1 parent d5e1de3 commit e02ec52

File tree

9 files changed

+5
-14
lines changed

9 files changed

+5
-14
lines changed

.eslintrc.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,8 @@
1515
"plugin:storybook/recommended",
1616
"plugin:jsx-a11y/recommended"
1717
],
18-
"rules": {}
18+
"rules": {
19+
"react/jsx-uses-react": "off",
20+
"react/react-in-jsx-scope": "off"
21+
}
1922
}

.github/workflows/storybook.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ on:
44
push:
55
branches: [main]
66

7-
concurrency:
8-
cancel-in-progress: true
9-
group: storybook-${{ github.ref }}
10-
117
jobs:
128
storybook:
139
name: Deployment storybook on gh-pages

src/HelloWorld.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import React from 'react';
2-
31
type Props = {
42
name: string;
53
};

src/Input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useState } from 'react';
1+
import { useState } from 'react';
22

33
export function Input() {
44
const [name, setName] = useState('');

src/__tests__/HelloWorld.test.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { render } from '@testing-library/react';
2-
import React from 'react';
32
import { HelloWorld } from '../HelloWorld';
43

54
describe('<HelloWorld />', () => {

src/__tests__/Input.test.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
import React from 'react';
21
import { render, screen, fireEvent } from '@testing-library/react';
3-
import userEvent from '@testing-library/user-event';
42
import { Input } from '../Input';
53

64
describe('<Input />', () => {

src/stories/HelloWorld.stories.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from 'react';
21
import { ComponentStory, ComponentMeta } from '@storybook/react';
32
import { HelloWorld } from '../HelloWorld';
43

src/stories/Input.stories.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from 'react';
21
import { ComponentStory, ComponentMeta } from '@storybook/react';
32
import { Input } from '../Input';
43

tsconfig.build.tsbuildinfo

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)