mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-07 06:08:54 +00:00
14 lines
No EOL
283 B
TypeScript
14 lines
No EOL
283 B
TypeScript
import Header from "./header";
|
|
import "./postCreation.css";
|
|
|
|
function PostCreation(){
|
|
|
|
return(
|
|
<div className="create-display">
|
|
<Header/>
|
|
<div className="create-part">
|
|
<h1>Create Post</h1>
|
|
</div>
|
|
</div>);
|
|
}
|
|
export default PostCreation; |