Slideshow Website
A guide to extending Netlify CMS
Setting up a project
npm
/yarn
webpack
reveal-md
- any build tool from
gulp
to a shell script
Setting up a project
$ yarn add netlify-cms react
$ npm install --save netlify-cms react
import React, { Component } from "react";
const SlideControl = props => { ... }
const SlidePreview = props => { ... }
export class SlidesControl extends Component { ... }
export const SlidesPreview = props => { ... }