docs/app/routes/docs._index.mdx
import { formatFrontmatterToRemixMeta } from '../helpers/meta'
export const meta = formatFrontmatterToRemixMeta(frontmatter)
Welcome to the react-spring docs site!
import { NAV_TILES } from '../data/fixtures' import { NavigationGrid } from '../components/Grids/NavigationGrid'
<NavigationGrid cols={2} tiles={NAV_TILES} />Our old documentation was lacking in features & clarity. So, based on community feedback, we've made an endeavor to improve our documentation with a few key differences:
animated
componentThank you for being interested in helping! It means a lot — if you want to share feedback or open a discussion, head over to the GitHub Discussions thread.
If you're interested in adding an example to the site then why not check out the specific contributing guide.
v10 introduced the move to React 19 and brought a breaking change to the SpringContext API. To add the Spring context provider, you must explicitly use SpringContextProvider.
before:
import { SpringContext } from 'react-spring'
...
<SpringContext ...>
...
now:
import { SpringContextProvider } from 'react-spring'
...
<SpringContextProvider ...>
...