mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-24 02:05:39 +03:00
Finally fix HMR not working for this file
This commit is contained in:
parent
38aaf89529
commit
975f3dd33f
1 changed files with 5 additions and 3 deletions
|
@ -18,13 +18,13 @@ import Status from './status';
|
|||
- Max character limit includes BOTH status text and Content Warning text
|
||||
*/
|
||||
|
||||
export default ({
|
||||
function Compose({
|
||||
onClose,
|
||||
replyToStatus,
|
||||
editStatus,
|
||||
draftStatus,
|
||||
standalone,
|
||||
}) => {
|
||||
}) {
|
||||
const [uiState, setUIState] = useState('default');
|
||||
|
||||
const accounts = store.local.getJSON('accounts');
|
||||
|
@ -696,7 +696,7 @@ export default ({
|
|||
</form>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
}
|
||||
|
||||
function MediaAttachment({
|
||||
attachment,
|
||||
|
@ -759,3 +759,5 @@ function MediaAttachment({
|
|||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Compose;
|
||||
|
|
Loading…
Reference in a new issue