Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

the page starts without any styling, how can I change it? #38

Open
devEzequiel opened this issue Aug 26, 2021 · 1 comment
Open

the page starts without any styling, how can I change it? #38

devEzequiel opened this issue Aug 26, 2021 · 1 comment

Comments

@devEzequiel
Copy link

when I enter the app it shows a page without formatting for a short period, is there a solution for that?

@gungorerhan
Copy link

Already covered in Readme.
Usage -> Use useThemeSwitcher Hook:
if (status === 'loading') { return <div>Loading styles...</div>; }

But this status check causes rendering components twice. I was able to fix it like this:
if (status !== 'loaded') { return <div>Loading styles...</div>; }
Hope it helps :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants