Skip to content

feat: input component #17

feat: input component

feat: input component #17

GitHub Actions / Lint failed May 8, 2024 in 0s

Errors 1, Warnings 1

Found 1 errors and 1 warnings

Annotations

Check warning on line 8 in ui/theme/src/theme.provider.tsx

See this annotation in the file changed.

@github-actions github-actions / Lint

(no-console): Unexpected console statement.

Unexpected console statement.
Raw output
   5 | import React from 'react'
   6 |
>  7 | console.log(theme.colors.input)
     | ^
   8 |
   9 | export const ThemeProvider = ({children}) => (
  10 | 	<EmotionThemeProvider theme={theme}>{children}</EmotionThemeProvider>

Check failure on line 8 in app/entrypoints/renderer/src/app/page.tsx

See this annotation in the file changed.

@github-actions github-actions / Lint

(arrow-body-style): Unexpected block statement surrounding arrow body; move the returned value immediately after the `=>`.

Unexpected block statement surrounding arrow body; move the returned value immediately after the `=>`.
Raw output
   5 | import {Input} from '@ui/input'
   6 |
>  7 | const Page = () => {
     |                    ^
   8 | 	return (
   9 | 		<ThemeProvider>
  10 | 			<Input