diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-07-19 18:32:55 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-07-19 18:32:55 +0200 |
commit | 67ad38d0a7cd319623e9f41c0c381ed5c5f6f973 (patch) | |
tree | 2d7498fd846109c0e2f5e72d74d6fa71d6895c2e /app/components | |
parent | bbb50922bf2d80e6b510eaca35477efb75704722 (diff) |
added theme fetching
Diffstat (limited to 'app/components')
-rw-r--r-- | app/components/graph/graph.tsx | 2 | ||||
-rw-r--r-- | app/components/wallpaper/bg.png | bin | 11602 -> 0 bytes | |||
-rw-r--r-- | app/components/wallpaper/[email protected] | bin | 35635 -> 0 bytes | |||
-rw-r--r-- | app/components/wallpaper/wallpaper.tsx | 6 |
4 files changed, 4 insertions, 4 deletions
diff --git a/app/components/graph/graph.tsx b/app/components/graph/graph.tsx index 9538274..5e68c3f 100644 --- a/app/components/graph/graph.tsx +++ b/app/components/graph/graph.tsx @@ -8,7 +8,7 @@ import { flatten } from "ramda" //import data from "../../data/miserables.json" //import genRandomTree from "../../data/randomdata"; -import rando from "../../data/rando.json" +//import gData from "../../data/rando.json" import { ForceGraph2D, ForceGraph3D, ForceGraphVR, ForceGraphAR } from "react-force-graph" import * as d3 from "d3-force-3d" diff --git a/app/components/wallpaper/bg.png b/app/components/wallpaper/bg.png Binary files differdeleted file mode 100644 index 45b63f3..0000000 --- a/app/components/wallpaper/bg.png +++ /dev/null diff --git a/app/components/wallpaper/[email protected] b/app/components/wallpaper/[email protected] Binary files differdeleted file mode 100644 index 828e94f..0000000 --- a/app/components/wallpaper/[email protected] +++ /dev/null diff --git a/app/components/wallpaper/wallpaper.tsx b/app/components/wallpaper/wallpaper.tsx index ebba75a..7aaad37 100644 --- a/app/components/wallpaper/wallpaper.tsx +++ b/app/components/wallpaper/wallpaper.tsx @@ -3,7 +3,7 @@ import { AutoImage as Image } from "../auto-image/auto-image" import { presets } from "./wallpaper.presets" import { WallpaperProps } from "./wallpaper.props" -const defaultImage = require("./bg.png") +//const defaultImage = require("./bg.png") /** * For your text displaying needs. @@ -19,7 +19,7 @@ export function Wallpaper(props: WallpaperProps) { const styles = [presetToUse, styleOverride] // figure out which image to use - const source = backgroundImage || defaultImage + //const source = backgroundImage || defaultImage - return <Image source={source} style={styles} /> + return null//<Image source={source} style={styles} /> } |