From 51fb5541337f1299c3531c55328e0eeafd05697c Mon Sep 17 00:00:00 2001 From: shobhitm23 Date: Wed, 2 Oct 2019 21:02:51 -0400 Subject: [PATCH] Adding Single Post --- .../src/components/post/SinglePost.js | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 twistter-frontend/src/components/post/SinglePost.js diff --git a/twistter-frontend/src/components/post/SinglePost.js b/twistter-frontend/src/components/post/SinglePost.js new file mode 100644 index 0000000..ac3b1cd --- /dev/null +++ b/twistter-frontend/src/components/post/SinglePost.js @@ -0,0 +1,21 @@ +import React, { Component, Fragment } from 'react'; +import PropTypes from 'prop-types'; +import withStyles from '@material-ui/core/styles/withStyles'; + +// MUI Stuff +import Button from '@material-ui/core/Button'; +import TextField from '@material-ui/core/TextField'; +import Dialog from '@material-ui/core/Dialog'; +import DialogContent from '@material-ui/core/DialogContent'; +import DialogTitle from '@material-ui/core/DialogTitle'; +import CircularProgress from '@material-ui/core/CircularProgress'; +import AddIcon from '@material-ui/icons/Add'; +import CloseIcon from '@material-ui/icons/Close'; + +class SinglePost extends Component{ + state = { + open: false, + body: '', + errors: {} + } +};