1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-12-22 14:44:21 +00:00

Add missing displayNames due to memo

This commit is contained in:
Steffo 2022-07-16 16:12:29 +02:00
parent 218a9f69ae
commit e0513b3e2d
Signed by: steffo
GPG key ID: 6965406171929D01
10 changed files with 11 additions and 0 deletions

View file

@ -17,3 +17,4 @@ export const TelegramLoginButton = memo((props: TelegramLoginButtonProps) => {
</div> </div>
) )
}) })
TelegramLoginButton.displayName = "TelegramLoginButton"

View file

@ -82,6 +82,7 @@ export const ErrorInline = memo((props: ErrorInlineProps) => {
</span> </span>
) )
}) })
ErrorInline.displayName = "ErrorInline"
export type ErrorBlockProps = { export type ErrorBlockProps = {
@ -110,3 +111,4 @@ export const ErrorBlock = memo((props: ErrorBlockProps) => {
</div> </div>
) )
}) })
ErrorBlock.displayName = "ErrorBlock"

View file

@ -19,3 +19,4 @@ export const LoadingTextInline = memo((props: LoadingTextInlineProps) => {
</span> </span>
) )
}) })
LoadingTextInline.displayName = "LoadingTextInline"

View file

@ -13,3 +13,4 @@ export const FestaIcon = memo((props: FontAwesomeIconProps) => {
/> />
) )
}) })
FestaIcon.displayName = "FestaIcon"

View file

@ -23,3 +23,4 @@ export const FestaMarkdownRenderer = memo(({ code }: FestaMarkdownRendererProps)
</ReactMarkdown> </ReactMarkdown>
) )
}) })
FestaMarkdownRenderer.displayName = "FestaMarkdownRenderer"

View file

@ -48,3 +48,4 @@ export const ToolBar = memo((props: ToolBarProps) => {
/> />
) )
}) })
ToolBar.displayName = "ToolBar"

View file

@ -20,3 +20,4 @@ export const Tool = memo((props: ToolProps) => {
/> />
) )
}) })
Tool.displayName = "Tool"

View file

@ -22,3 +22,4 @@ export const ViewContent = memo((props: ViewContentProps) => {
</main> </main>
) )
}) })
ViewContent.displayName = "ViewContent"

View file

@ -31,3 +31,4 @@ export const ViewLanding = memo((props: ViewLandingProps) => {
</main> </main>
) )
}) })
ViewLanding.displayName = "ViewLanding"

View file

@ -19,3 +19,4 @@ export const ViewNotice = memo((props: ViewNoticeProps) => {
</main> </main>
) )
}) })
ViewNotice.displayName = "ViewNotice"