Course on Scrimba.
Some prior programming experience is needed when reading these notes to understand things like variables, data types, and some data structures like arrays and objects.
This course includes newly introduced features in ES6, ES7 and ES8. Some additions make JS a lot easier to use.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// based off of https://stackblitz.com/edit/yet-another-react-lightbox-examples?file=src/examples/FullscreenPlugin.tsx&initialPath=/examples/basic | |
import * as React from "react"; | |
import Lightbox from "yet-another-react-lightbox"; | |
import Rotate from "@/examples/RotatePlugin" | |
import { LightboxButton, Paragraph, Title } from "@/components"; | |
import slides from "@/data/slides"; | |
export default function RotateExample() { |
Course on Scrimba.
Some prior programming experience is needed when reading these notes to understand things like variables, data types, and some data structures like arrays and objects.