Optimizely Content Management System (CMS) has support for using JavaScript frameworks in the user interface, which means that you can use them to build components used by editors in the on-page edit view.
You can add components to different parts of the user interface, this example describes how to create a custom edit view.
## Register the view server-side
To create a new edit view for content data, we need to register a `ViewConfiguration
` class on the server side and point to the JavaScript file that should be loaded. In this case, the file will be our bundled React view. The following code will do this:
Now when you look in edit view, you will have an extra view listed in the view switcher.

## Create the entry point
If you have ever made a React application before, you will be familiar with having an entry point called _index.js_ that simply calls `ReactDOM.render
` (see <https://reactjs.org/docs/react-dom.html#render>). However in this case, since our view in running inside a Dojo application, the entry point needs to pretend to be a widget and that widget will instead call `ReactDOM.render
`. This can be done with this code:
**index.js**
This creates a widget which will then render the React component to its DOM node. It will also unmount the component when the view is destroyed.
This code can be used as a boilerplate, just replace `MyComponent
` with your React component.
## Build the bundle
At this point, let's assume you have your `MyComponent
` implemented in React. In order to get it to appear in the user interface, it needs to be bundled into a single file (the one that our view configuration is pointing to). To do this, you can use bundlers like [webpack](🔗) or [rollup](🔗). Examples of both methods are given below.
The first thing to note is that since CMS uses AMD for its module loading, the bundle we produce also needs to be AMD formatted. Luckily, the build tools will do this for you with a single line of configuration.
The second thing to note is that in the entry point code, in the previous example, there are imports for Dojo and Dijit. These, however, exist inside the CMS application and should not be bundled, so they need to be marked as external. This is also done with a few lines of configuration.
The entry point for your bundle will be the _index.js_ file from the previous example and the output file should be the path to the folder for your JavaScript file that you've configured in your [module.config](🔗), plus the relative path to the file that you configured in the view configuration. Change the paths in the examples below to suit your needs.
**webpack.config.js**
The interesting parts of this configuration are the settings for `libraryTarget
`, `libraryExport
`, and `externals
`.
For webpack, it is important to set the `libraryExport
` so that it returns the default export from the entry point rather than an object containing all the exports.
**rollup.config.js**
The interesting parts of this configuration are the settings for `format
`Â and `external
`.
## Access CMS features from the React component
At this point you should have your React component loading in the user interface. But what if you want to use a component from the CMS? For example, you may want the user to be able to select a page using the content selector.
Events are automatically connected from the props to the widget based on the naming convention `onEventName
`; and settings for the widget are only passed to the widget during construction. Changes to settings are not propagated after mount, although it is probably not hard to implement.
Example usage could look like this:
Something else that maybe worth looking at is the `@episerver/amd-loader-proxy
`Â mentioned earlier (see also <https://www.npmjs.com/package/@episerver/amd-loader-proxy>). With this, you can dynamically require AMD modules from CMS from your JavaScript application. This is framework agnostic so it can be used with whichever JavaScript framework you prefer.