nextjs
Here are 6,002 public repositories matching this topic...
-
Updated
Sep 3, 2019 - TypeScript
What do you want and why?
const query = {}
cosnt params = useParams() // returns {}
cosnt params = useParams('number') // returns {}
const param = useParam('key', "number") // returns NaN
- I want to check param like
if(param)
butNaN
will betrue
. It might not be useful. - Between
useParams
andparam
is not consistent, I'm a bit confusing. - Type implementati
Summary
Some screen plugins need a different UI than a sidebar or a popup. It would be nice to get all of the ergonomic benefits of a screen, w/o needing to use the Tina sidebar UI or popup UI.
-
Updated
Nov 11, 2020
-
Updated
Nov 11, 2020 - TypeScript
-
Updated
Aug 17, 2020 - TypeScript
-
Updated
Sep 7, 2020 - JavaScript
-
Updated
Jul 18, 2019
-
Updated
Nov 11, 2020 - JavaScript
Some folks have noted it would be beneficial to have this repository translated to other languages. One contributor has already volunteered to translate the repository into Russian (woohoo!).
If anyone has the time and drive to help out with other languages, please reply below with the proposed language and I'll give you the "go-ahead"... just to make sure two people don't create translations i
-
Updated
Oct 6, 2020 - TypeScript
DefaultSeo og:title and og:description only overridden by NextSeo when openGraph config provided
Hi! First off, thank you so much for this library!
I noticed some unexpected behavior (not sure if it's a bug or intended) when using DefaultSeo
and NextSeo
. The DefaultSeo
og:title
and og:description
meta tags are not overridden by NextSeo
's title
and description
configurations unless an openGraph
configuration object is provided to NextSeo
. I believe this is due to http
-
Updated
Nov 10, 2020 - TypeScript
-
Updated
Nov 13, 2020 - TypeScript
-
Updated
Nov 10, 2020 - TypeScript
-
Updated
Oct 31, 2020 - JavaScript
-
Updated
Jul 17, 2020 - JavaScript
-
Updated
Nov 9, 2020 - JavaScript
-
Updated
Nov 11, 2020 - TypeScript
There is an import dependencie cycle between:
src/Interfaces/index.ts
:
export * from '@Redux/IStore';
and
src/Redux/IStore.d.ts
:
import { IHomePage } from '@Interfaces';
Eslint rule that detect the issue:
https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-cycle.md
Improve this page
Add a description, image, and links to the nextjs topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the nextjs topic, visit your repo's landing page and select "manage topics."
Bug report
Describe the bug
When using
React.Fragment
like this:You get this warning from React in the console:
``