VogelSocialMedia/code/frontend/src/PostCreation.tsx
2025-06-30 10:56:18 +02:00

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;