import React from "react" import Flip from "./Flip" import FileCard from "../FileCard/FileCard" import Button from "../Button/Button" import UserStamp from '../UserStamp/UserStamp' import Panel from '../Panel/Panel' class FlipStoryContainer extends React.Component { constructor() { super() this.state = { flip: false } } state: { flip: boolean } handleFlip() { this.setState({ flip: !this.state.flip }) } render() { let props = { fileCard: { layout: 'vertical', displayName: 'Some File', description: '2 pages', downloadUrl: 'http://google.com', openNewTab: false, type: 'file-pdf', hasProtection: true, hasAccess: true, } } return (
{'This is the back, wanna go to the front?'}