Product Update: November 2020
As we get closer to wrapping up this (more than) eventful year, we’ve got a packed new release for you! Learn about the new additions and improvements in this blog post.
Over at GraphCMS, we are big fans of the React ecosystem. Our newest team member Hugo put together an awesome React Component to simplify the use of images stored in GraphCMS: graphcms-image
. You can find it on Github and npm!
graphcms-image
makes it super easy to resize, automatically compress, optimize, and lazy load images. It takes advantage of Filestack's powerful API, which enables on the fly image transformations via URL parameters.
A sample component using graphcms-image
might look like this:
```
import React from "react";
import GraphImg from "graphcms-image";
export default ({ data: { image } }) => (
export const query = graphqlquery getAssets {
allAssets {
handle
width
height
}
}
;
```
Please note, that this Component is still in beta and it's not recommended to use it in production until it reaches a stable release!
This site uses cookies to provide you with a better user experience. For more information, refer to our Privacy Policy