added creator view

This commit is contained in:
SrGooglo 2023-06-24 12:00:39 +00:00
parent 52e6882a1a
commit d1af2d4777
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import React from "react"
import PostCreator from "components/PostCreator"
import "./index.less"
export default () => {
return <div className="_mobile_creator">
<PostCreator />
</div>
}

View File

@ -0,0 +1,8 @@
._mobile_creator {
display: flex;
flex-direction: column;
.postCreator {
background-color: transparent;
}
}