GithubHelp home page GithubHelp logo

gothinkster / apprun-realworld-example-app Goto Github PK

View Code? Open in Web Editor NEW
101.0 101.0 34.0 2.98 MB

Exemplary real world application built with AppRun

Home Page: https://github.com/yysun/apprun

HTML 2.56% JavaScript 3.52% TypeScript 93.92%

apprun-realworld-example-app's People

Contributors

alonski avatar dependabot[bot] avatar ericsimons avatar esakkiraj avatar optikfluffel avatar yysun avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

apprun-realworld-example-app's Issues

API Domain change

Hello!

Due to governance changes, we are now using the realworld.io domain for the RealWorld demo (both client and API).
Requests from conduit.productionready.io are redirected to api.realworld.io, but such a redirection might lead to inconsistent responses.

We encourage domain change for the community.
If this repository is maintained anymore, we'll consider hosting a demo of your implementation in a few weeks with the domain change.

The demo link will be added to the RealWorld documentation.

Routing Logic

Hello!

Can please help me understand how the routing actually works? I can't really find the logic which determines which view to show depending on the current location.

Thank you!

Architecture question: strong event typing

In Arcticle.tsx new-comment update, the internal structure of article-list.tsx is referenced (e.target['comment'].value).
Is it possible in this kind of scenario to declare a type for new-comment event, and allow Article.tsx to use this type in its update handler? This would reduce the coupling between these two components.
I am asking about AppRun in general, not for a change to this code in particular.

apprun failed to start using npm start after app install

apprun failed to npm start and displayed errors below

runtime modules 1.25 KiB 6 modules
cacheable modules 384 KiB
modules by path ./node_modules/ 340 KiB 24 modules
modules by path ./src/ 43.9 KiB
modules with errors 37.7 KiB [errors] 14 modules
modules by path ./src/*.ts 6.18 KiB
./src/main.ts 446 bytes [built] [code generated]
./src/api.ts 2.77 KiB [built] [code generated]
./src/fetch.ts 2.97 KiB [built] [code generated]
external "apprun" 42 bytes [built] [code generated]
./node_modules/webpack/hot/ sync nonrecursive ^./log$ 170 bytes [built] [code generated]
external "marked" 42 bytes [built] [code generated]

ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx
./src/components/article-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx(8,10)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 4:0-38 45:34-42
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx
./src/components/article-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx(9,12)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 4:0-38 45:34-42
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx
./src/components/article-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx(13,14)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 4:0-38 45:34-42
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx
./src/components/article-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx(14,60)
TS2322: Type '{ children: string; href: string; class: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 4:0-38 45:34-42
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx
./src/components/article-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx(17,17)
TS2322: Type '{ children: string; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLSpanElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLSpanElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 4:0-38 45:34-42
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx
./src/components/article-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx(20,11)
TS2322: Type '{ children: (string | number | Element)[]; class: string; $onclick: any[]; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 4:0-38 45:34-42
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx
./src/components/article-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx(22,14)
TS2322: Type '{ class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 4:0-38 45:34-42
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx
./src/components/article-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx(25,45)
TS2322: Type '{ children: Element[]; href: string; class: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 4:0-38 45:34-42
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx
./src/components/article-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx(29,13)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLUListElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLUListElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 4:0-38 45:34-42
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx
./src/components/article-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx(31,17)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 4:0-38 45:34-42
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx
./src/components/article-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-list.tsx(45,10)
TS2322: Type '{ children: string; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 4:0-38 45:34-42
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(8,10)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(12,12)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(13,58)
TS2322: Type '{ children: string; href: string; class: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(16,15)
TS2322: Type '{ children: string; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLSpanElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLSpanElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(22,13)
TS2322: Type '{ children: (string | Element)[]; class: string; $onclick: (string | IArticle)[]; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(24,16)
TS2322: Type '{ class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(28,13)
TS2322: Type '{ children: (string | Element)[]; class: string; $onclick: (string | IArticle)[]; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(30,16)
TS2322: Type '{ class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(36,13)
TS2322: Type '{ children: Element; class: string; $onclick: any[]; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(40,20)
TS2322: Type '{ class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(44,20)
TS2322: Type '{ class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(50,13)
TS2322: Type '{ children: (string | Element)[]; class: string; $onclick: any[]; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(52,16)
TS2322: Type '{ class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx
./src/components/article-meta.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article-meta.tsx(53,40)
TS2322: Type '{ children: (string | number)[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLSpanElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLSpanElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 5:0-41 25:30-41 38:30-41
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article.tsx
./src/components/article.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article.tsx(19,12)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article.tsx
./src/components/article.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article.tsx(31,14)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article.tsx
./src/components/article.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article.tsx(32,16)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article.tsx
./src/components/article.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article.tsx(38,14)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article.tsx
./src/components/article.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article.tsx(39,16)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article.tsx
./src/components/article.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article.tsx(40,18)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article.tsx
./src/components/article.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article.tsx(42,20)
TS2322: Type '{ children: (Element | Element[])[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article.tsx
./src/components/article.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article.tsx(45,23)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\article.tsx
./src/components/article.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\article.tsx(53,16)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(7,10)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(8,12)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(9,12)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLParagraphElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLParagraphElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(13,12)
TS2322: Type '{ children: (string | Element)[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(14,12)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(15,43)
TS2322: Type '{ src: string; class: string; }' is not assignable to type 'DetailedHTMLProps<ImgHTMLAttributes, HTMLImageElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ImgHTMLAttributes, HTMLImageElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(18,12)
TS2322: Type '{ children: string; class: string; href: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(21,15)
TS2322: Type '{ children: string; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLSpanElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLSpanElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(23,17)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLSpanElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLSpanElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(24,16)
TS2322: Type '{ class: string; $onclick: (string | IComment)[]; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(35,10)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(36,12)
TS2322: Type '{ children: (Element | Element[])[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(43,17)
TS2322: Type '{ children: Element[]; class: string; $onsubmit: string; }' is not assignable to type 'DetailedHTMLProps<FormHTMLAttributes, HTMLFormElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FormHTMLAttributes, HTMLFormElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(44,18)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(48,17)
TS2322: Type 'string' is not assignable to type 'number'.
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(51,18)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(53,39)
TS2322: Type '{ src: string; class: string; }' is not assignable to type 'DetailedHTMLProps<ImgHTMLAttributes, HTMLImageElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ImgHTMLAttributes, HTMLImageElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx
./src/components/comment-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\comment-list.tsx(57,23)
TS2322: Type '{ children: string; class: string; type: "submit"; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/components/article.tsx 4:0-38 39:26-34
@ ./src/main.ts 9:0-30

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(12,12)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(13,14)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(14,16)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(15,18)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(17,21)
TS2322: Type '{ children: Element[]; $onsubmit: string; }' is not assignable to type 'DetailedHTMLProps<FormHTMLAttributes, HTMLFormElement>'.
Property '$onsubmit' does not exist on type 'DetailedHTMLProps<FormHTMLAttributes, HTMLFormElement>'. Did you mean 'onSubmit'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(20,29)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(23,23)
TS2322: Type '{ type: string; class: string; placeholder: string; name: string; value: any; }' is not assignable to type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'. Did you mean 'className'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(29,29)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(32,23)
TS2322: Type '{ type: string; class: string; placeholder: string; name: string; value: any; }' is not assignable to type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'. Did you mean 'className'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(38,29)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(41,23)
TS2322: Type 'string' is not assignable to type 'number'.
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(47,29)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(50,23)
TS2322: Type '{ type: string; class: string; placeholder: string; name: string; value: any; }' is not assignable to type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'. Did you mean 'className'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(55,26)
TS2322: Type '{ class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx
./src/components/editor.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\editor.tsx(57,27)
TS2322: Type '{ children: string; class: string; type: "submit"; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\error-list.tsx
./src/components/error-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\error-list.tsx(5,9)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLUListElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLUListElement>'. Did you mean 'className'?
@ ./src/components/editor.tsx 4:0-34 18:50-56
@ ./src/main.ts 8:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(8,11)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLUListElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLUListElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(9,13)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(10,14)
TS2322: Type '{ children: string; class: string; href: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(15,15)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(16,16)
TS2322: Type '{ children: (string | Element)[]; class: string; href: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(17,18)
TS2322: Type '{ class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(22,15)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(23,16)
TS2322: Type '{ children: (string | Element)[]; class: string; href: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(24,18)
TS2322: Type '{ class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(29,15)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(30,16)
TS2322: Type '{ children: string; class: string; href: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(36,15)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(37,16)
TS2322: Type '{ children: string; class: string; href: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(43,15)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(44,16)
TS2322: Type '{ children: any; class: string; href: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(50,15)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\header.tsx
./src/components/header.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\header.tsx(51,16)
TS2322: Type '{ children: string; class: string; href: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/main.ts 2:0-29

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(9,30)
TS2322: Type '{ children: any; href: string; class: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(34,12)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(35,14)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(36,16)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(37,17)
TS2322: Type '{ children: string; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLHeadingElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLHeadingElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(41,14)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(42,16)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(43,18)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(44,20)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(45,21)
TS2322: Type '{ children: (string | Element)[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLUListElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLUListElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(46,23)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(48,23)
TS2322: Type '{ children: string; class: string; href: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(55,23)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(56,24)
TS2322: Type '{ children: string; class: string; href: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(61,25)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(63,25)
TS2322: Type '{ children: any[]; class: string; href: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(73,16)
TS2786: 'Articles' cannot be used as a JSX component.
Its return type 'Element | Element[]' is not a valid JSX element.
Type 'Element[]' is not assignable to type 'Element'.
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(80,18)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(81,20)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\home.tsx
./src/components/home.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\home.tsx(83,22)
TS2322: Type '{ children: any; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 3:0-27

ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx
./src/components/modal.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx(5,10)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/settings.tsx 5:0-28 16:41-46
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx
./src/components/modal.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx(6,12)
TS2322: Type '{ children: Element; class: string; role: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/settings.tsx 5:0-28 16:41-46
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx
./src/components/modal.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx(7,14)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/settings.tsx 5:0-28 16:41-46
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx
./src/components/modal.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx(8,16)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/settings.tsx 5:0-28 16:41-46
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx
./src/components/modal.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx(9,17)
TS2322: Type '{ children: any[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLHeadingElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLHeadingElement>'. Did you mean 'className'?
@ ./src/components/settings.tsx 5:0-28 16:41-46
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx
./src/components/modal.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx(13,17)
TS2322: Type '{ children: Element; type: "button"; class: string; "data-dismiss": string; "aria-label": string; $onclick: any; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/components/settings.tsx 5:0-28 16:41-46
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx
./src/components/modal.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx(21,16)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/settings.tsx 5:0-28 16:41-46
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx
./src/components/modal.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx(24,16)
TS2322: Type '{ children: (string | Element)[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/settings.tsx 5:0-28 16:41-46
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx
./src/components/modal.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx(28,17)
TS2322: Type '{ children: any; type: "button"; class: string; "data-dismiss": string; $onclick: any; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/components/settings.tsx 5:0-28 16:41-46
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx
./src/components/modal.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx(35,35)
TS2322: Type '{ children: any; type: "button"; class: string; $onclick: any; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/components/settings.tsx 5:0-28 16:41-46
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx
./src/components/modal.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\modal.tsx(41,12)
TS2322: Type '{ class: string; $onclick: any; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/components/settings.tsx 5:0-28 16:41-46
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\page-list.tsx
./src/components/page-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\page-list.tsx(7,11)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLUListElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLUListElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 5:0-32 46:34-39
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\page-list.tsx
./src/components/page-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\page-list.tsx(9,15)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 5:0-32 46:34-39
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\page-list.tsx
./src/components/page-list.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\page-list.tsx(10,44)
TS2322: Type '{ children: number; href: string; class: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/components/profile.tsx 5:0-32 46:34-39
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(21,12)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(22,14)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(23,16)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(24,18)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(25,20)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(26,42)
TS2322: Type '{ src: string; class: string; }' is not assignable to type 'DetailedHTMLProps<ImgHTMLAttributes, HTMLImageElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ImgHTMLAttributes, HTMLImageElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(30,19)
TS2322: Type '{ children: Element; class: string; $onclick: (string | this | IProfile)[]; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(34,26)
TS2322: Type '{ class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(38,26)
TS2322: Type '{ class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(47,14)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(48,16)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(49,18)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(50,20)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(51,21)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLUListElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLUListElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(52,23)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(54,23)
TS2322: Type '{ children: string; class: string; href: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(59,23)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<LiHTMLAttributes, HTMLLIElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(61,23)
TS2322: Type '{ children: string; class: string; href: string; }' is not assignable to type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes, HTMLAnchorElement>'. Did you mean 'className'?
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx
./src/components/profile.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\profile.tsx(68,16)
TS2786: 'Articles' cannot be used as a JSX component.
Its return type 'Element | Element[]' is not a valid JSX element.
Type 'Element[]' is missing the following properties from type 'Element': type, props, key
@ ./src/main.ts 6:0-30

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(11,12)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(12,14)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(13,16)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(14,18)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(15,19)
TS2322: Type '{ children: string; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLHeadingElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLHeadingElement>'. Did you mean 'className'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(16,18)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLParagraphElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLParagraphElement>'. Did you mean 'className'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(22,21)
TS2322: Type '{ children: Element[]; $onsubmit: string; }' is not assignable to type 'DetailedHTMLProps<FormHTMLAttributes, HTMLFormElement>'.
Property '$onsubmit' does not exist on type 'DetailedHTMLProps<FormHTMLAttributes, HTMLFormElement>'. Did you mean 'onSubmit'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(23,27)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(25,21)
TS2322: Type '{ class: string; type: string; placeholder: string; name: string; }' is not assignable to type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'. Did you mean 'className'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(31,27)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(33,21)
TS2322: Type '{ class: string; type: string; placeholder: string; name: string; }' is not assignable to type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'. Did you mean 'className'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(39,27)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(41,21)
TS2322: Type '{ class: string; type: string; placeholder: string; name: string; }' is not assignable to type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'. Did you mean 'className'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\register.tsx
./src/components/register.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\register.tsx(47,25)
TS2322: Type '{ children: string; class: string; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/main.ts 5:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(13,12)
TS2322: Type '{ children: (string | Element)[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(26,14)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(27,16)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(28,18)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(30,19)
TS2322: Type '{ children: string; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLHeadingElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLHeadingElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(31,21)
TS2322: Type '{ children: Element; $onsubmit: string; }' is not assignable to type 'DetailedHTMLProps<FormHTMLAttributes, HTMLFormElement>'.
Property '$onsubmit' does not exist on type 'DetailedHTMLProps<FormHTMLAttributes, HTMLFormElement>'. Did you mean 'onSubmit'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(33,29)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(35,23)
TS2322: Type '{ class: string; type: string; placeholder: string; name: string; value: any; }' is not assignable to type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(42,29)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(44,23)
TS2322: Type '{ class: string; type: string; placeholder: string; name: string; value: any; }' is not assignable to type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(51,29)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(54,23)
TS2322: Type 'string' is not assignable to type 'number'.
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(60,29)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(62,23)
TS2322: Type '{ class: string; type: string; placeholder: string; name: string; value: any; }' is not assignable to type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(69,29)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(71,23)
TS2322: Type '{ class: string; type: string; placeholder: string; name: string; value: any; }' is not assignable to type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx
./src/components/settings.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\settings.tsx(78,27)
TS2322: Type '{ children: string; class: string; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/main.ts 7:0-31

ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx
./src/components/signin.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx(12,12)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 4:0-29

ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx
./src/components/signin.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx(13,14)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 4:0-29

ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx
./src/components/signin.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx(14,16)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 4:0-29

ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx
./src/components/signin.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx(15,18)
TS2322: Type '{ children: Element[]; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLDivElement>'. Did you mean 'className'?
@ ./src/main.ts 4:0-29

ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx
./src/components/signin.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx(16,19)
TS2322: Type '{ children: string; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLHeadingElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLHeadingElement>'. Did you mean 'className'?
@ ./src/main.ts 4:0-29

ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx
./src/components/signin.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx(17,18)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes, HTMLParagraphElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes, HTMLParagraphElement>'. Did you mean 'className'?
@ ./src/main.ts 4:0-29

ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx
./src/components/signin.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx(23,21)
TS2322: Type '{ children: Element[]; $onsubmit: string; }' is not assignable to type 'DetailedHTMLProps<FormHTMLAttributes, HTMLFormElement>'.
Property '$onsubmit' does not exist on type 'DetailedHTMLProps<FormHTMLAttributes, HTMLFormElement>'. Did you mean 'onSubmit'?
@ ./src/main.ts 4:0-29

ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx
./src/components/signin.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx(24,27)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 4:0-29

ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx
./src/components/signin.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx(26,21)
TS2322: Type '{ class: string; type: string; placeholder: string; name: string; }' is not assignable to type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'. Did you mean 'className'?
@ ./src/main.ts 4:0-29

ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx
./src/components/signin.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx(32,27)
TS2322: Type '{ children: Element; class: string; }' is not assignable to type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<FieldsetHTMLAttributes, HTMLFieldSetElement>'. Did you mean 'className'?
@ ./src/main.ts 4:0-29

ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx
./src/components/signin.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx(34,21)
TS2322: Type '{ class: string; type: string; placeholder: string; name: string; }' is not assignable to type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'. Did you mean 'className'?
@ ./src/main.ts 4:0-29

ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx
./src/components/signin.tsx
[tsl] ERROR in C:\Users\Tobb\apprun\src\components\signin.tsx(40,25)
TS2322: Type '{ children: string; class: string; }' is not assignable to type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'.
Property 'class' does not exist on type 'DetailedHTMLProps<ButtonHTMLAttributes, HTMLButtonElement>'. Did you mean 'className'?
@ ./src/main.ts 4:0-29

webpack 5.10.0 compiled with 181 errors in 22452 ms
i 「wdm」: Failed to compile.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.