Skip to content

Commit

Permalink
Deploying to gh-pages from @ 12c47c5 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianapepelucio committed Nov 1, 2024
1 parent 7d1a871 commit e84d475
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 35 deletions.
1 change: 0 additions & 1 deletion bundle.12288100.js.map

This file was deleted.

30 changes: 15 additions & 15 deletions bundle.12288100.js → bundle.53b08919.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions bundle.53b08919.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions components/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ import React from "react";
import Scroll from "react-scroll";
import { StickyContainer } from "react-sticky";

import MenuBar from "./menubar";
import Overview from "../../docs/overview.md";
import ReactMarkdown from "react-markdown";
import CustomEntities from "../../docs/custom_entities.md";
import Customization from "../../docs/customization.md";
import Overview from "../../docs/overview.md";
import Plugins from "../../docs/plugins.md";
import Serializing from "../../docs/serializing.md";
import CustomEntities from "../../docs/custom_entities.md";
import ReactMarkdown from "react-markdown";
import MenuBar from "./menubar";

import { highlightCode } from "./highlightCode";

Expand Down
4 changes: 2 additions & 2 deletions components/example.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
* License: MIT
*/

import React, { useState, useEffect } from "react";
import React, { useEffect, useState } from "react";

import { MegadraftEditor } from "../../src/Megadraft";
import { editorStateToJSON, editorStateFromRaw } from "../../src/utils";
import { editorStateFromRaw, editorStateToJSON } from "../../src/utils";
import { highlightCode } from "./highlightCode";

import INITIAL_CONTENT from "./contentExample";
Expand Down
12 changes: 6 additions & 6 deletions components/menubar.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import React, { useState, useRef } from "react";
import { Sticky } from "react-sticky";
import Scroll from "react-scroll";
import React, { useRef, useState } from "react";
import { Link } from "react-router-dom";
import Scroll from "react-scroll";
import { Sticky } from "react-sticky";

import Button from "@material-ui/core/Button";
import { common } from "@material-ui/core/colors";
import Grid from "@material-ui/core/Grid";
import MenuItem from "@material-ui/core/MenuItem";
import Divider from "@material-ui/core/Divider";
import Grid from "@material-ui/core/Grid";
import Menu from "@material-ui/core/Menu";
import MenuItem from "@material-ui/core/MenuItem";
import Toolbar from "@material-ui/core/Toolbar";
import Button from "@material-ui/core/Button";
import { useCallback } from "react";

import { Burger } from "./icons/burger";
Expand Down
4 changes: 2 additions & 2 deletions components/toggleButton.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import { makeStyles } from "@material-ui/core/styles";
import Button from "@material-ui/core/Button";
import { makeStyles } from "@material-ui/core/styles";
import React from "react";

import { yellow } from "@material-ui/core/colors";

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@
<div id="react-container"></div>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.1.0/highlight.min.js"></script>
<script type="text/javascript" src=".././bundle.12288100.js"></script></body>
<script type="text/javascript" src=".././bundle.53b08919.js"></script></body>
</html>
8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@
import React from "react";
import { createRoot } from "react-dom/client";

import { hashHistory, Route, Switch, HashRouter } from "react-router-dom";
import { hashHistory, HashRouter, Route, Switch } from "react-router-dom";
import Scroll from "react-scroll";
import { StickyContainer } from "react-sticky";

import { ThemeProvider } from "@material-ui/styles";
import Grid from "@material-ui/core/Grid";
import { common } from "@material-ui/core/colors";
import { ThemeProvider } from "@material-ui/styles";

import MenuBar from "./components/menubar";
import Docs from "./components/docs";
import theme from "./components/megadrafttheme";
import Example from "./components/example";
import Header from "./components/header";
import { highlightCode } from "./components/highlightCode";
import LetsRockArrow from "./components/icons/arrow-down";
import theme from "./components/megadrafttheme";
import MenuBar from "./components/menubar";
import ToggleButton from "./components/toggleButton";

const LinkScroll = Scroll.Link;
Expand Down

0 comments on commit e84d475

Please sign in to comment.