Skip to content

Instantly share code, notes, and snippets.

@berkesayin
Created March 18, 2022 16:11
Show Gist options
  • Save berkesayin/32bf7db2cf4b4e3888204bcdba477a61 to your computer and use it in GitHub Desktop.
Save berkesayin/32bf7db2cf4b4e3888204bcdba477a61 to your computer and use it in GitHub Desktop.
Tweet-component
import React, {Component} from 'react';
import Tweet from '../component/Tweet';
class Timeline extends Component {
render() {
return (
<div>
<Tweet />
</div>
);
}
export default Timeline;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment