This file contains 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
import React, { Component } from "react"; | |
import ReactDOM from "react-dom"; | |
import AlbumFields from './albumFields'; | |
import { ButtonToggle } from "reactstrap"; | |
class Album extends Component { | |
constructor(props) { | |
super(props); | |
this.save = this.save.bind(this); |
This file contains 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
import React, { Component } from "react"; | |
import ReactDOM from "react-dom"; | |
import styled from 'styled-components'; | |
import { Delete } from 'styled-icons/typicons/Delete'; | |
import Downloaded from './downloaded'; | |
import { DragDropContext, Droppable, Draggable } from "react-beautiful-dnd"; | |
import { ButtonToggle } from "reactstrap"; | |
import { Container, Row, Col } from 'reactstrap'; | |
const reorder = (list, startIndex, endIndex) => { |
This file contains 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
import React, { Component } from 'react'; | |
import { BrowserRouter, Router, Route, Switch } from "react-router-dom"; | |
import Profile from "./components/Profile"; | |
import history from "./utils/history"; | |
import './css/styles.css'; | |
import Navbar from './components/navbar'; | |
import Downloaded from './components/downloaded'; | |
import DownloadTest from './components/downloadTest'; | |
import ImageUpload from './components/image-upload'; | |
import AddAlbum from './components/add-album'; |
This file contains 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
// src/index.js | |
import React from "react"; | |
import ReactDOM from "react-dom"; | |
import App from "./App"; | |
import * as serviceWorker from "./serviceWorker"; | |
import { Auth0Provider } from "./react-auth0-spa"; | |
import config from "./auth_config.json"; | |
import history from "./utils/history"; |
This file contains 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
import React, { Component } from "react"; | |
import ReactDOM from "react-dom"; | |
import auth0Client from "../Auth"; | |
import { useAuth0 } from "../react-auth0-spa"; | |
import {Auth0Context} from "../react-auth0-spa" | |
import { Auth0Provider } from "../react-auth0-spa"; | |
class AddAlbum extends Component { | |
constructor(props) { | |
super(props); |
This file contains 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
import React, { Component } from "react"; | |
import ReactDOM from "react-dom"; | |
import styled from 'styled-components'; | |
import { Delete } from 'styled-icons/typicons/Delete'; | |
import Downloaded from './downloaded'; | |
import { DragDropContext, Droppable, Draggable } from "react-beautiful-dnd"; | |
import { ButtonToggle } from "reactstrap"; | |
import { Container, Row, Col } from 'reactstrap'; | |
import axios from 'axios'; | |
import auth0Client from "../Auth"; |
This file contains 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
import SwiftUI | |
struct Album: View { | |
var post:Post | |
var post2:[PostById] | |
var body: some View { | |
VStack { | |
Text("Title: ").bold() | |
+ Text("\(post.title)") |
This file contains 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
import Foundation | |
import UIKit | |
class FeedCell:UITableViewCell { | |
var albumImage = UIImageView() | |
var albumTitle = UILabel() | |
var imageLoader:DownloadImage? | |
var components:URLComponents = { | |
var component = URLComponents() |
This file contains 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
import Foundation | |
import UIKit | |
import Auth0 | |
import SwiftUI | |
class ArtistProfileVC: Toolbar, UITableViewDelegate, UITableViewDataSource { | |
var profile: UserInfo! | |
var isLoaded:Bool? = false |
This file contains 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
import React, { Component } from "react"; | |
import ReactDOM from "react-dom"; | |
import styled from 'styled-components'; | |
import EditVideoFields from './edit-videoFields' | |
import { ButtonToggle } from "reactstrap"; | |
import { Container, Row, Col } from 'reactstrap'; | |
import axios from 'axios'; | |
import auth0Client from "../../Auth"; | |
import { useAuth0 } from "../../react-auth0-spa"; | |
import {Auth0Context} from "../../react-auth0-spa" |
OlderNewer