Skip to content

Instantly share code, notes, and snippets.

View foxfl's full-sized avatar

Florian Fuchs foxfl

  • Munich
View GitHub Profile
@foxfl
foxfl / CommentsScreen.tsx
Last active September 19, 2022 06:18
CommentsScreen
const CommentsScreen = (props) => {
...
return (
<Container>
<CommentList />
<CommentEditor />
<MyBottomSheet />
</Container>
);
};