mirror of
https://github.com/ClaytonWWilson/CS307-Team24.git
synced 2025-12-17 02:38:47 +00:00
Adding Single Post
This commit is contained in:
parent
b1f5ddaa49
commit
51fb554133
21
twistter-frontend/src/components/post/SinglePost.js
Normal file
21
twistter-frontend/src/components/post/SinglePost.js
Normal file
@ -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: {}
|
||||||
|
}
|
||||||
|
};
|
||||||
Loading…
Reference in New Issue
Block a user