├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.tsx ├── components │ ├── Avatar │ │ ├── index.tsx │ │ └── styles.ts │ ├── Button │ │ └── index.tsx │ ├── Feed │ │ ├── index.tsx │ │ └── styles.ts │ ├── FollowSuggestion │ │ ├── index.tsx │ │ └── styles.ts │ ├── ImageContent │ │ ├── index.tsx │ │ └── styles.ts │ ├── Layout │ │ ├── index.tsx │ │ └── styles.ts │ ├── List │ │ ├── index.tsx │ │ └── styles.ts │ ├── Main │ │ ├── index.tsx │ │ └── styles.ts │ ├── MenuBar │ │ ├── index.tsx │ │ └── styles.ts │ ├── News │ │ ├── index.tsx │ │ └── styles.ts │ ├── ProfilePage │ │ ├── index.tsx │ │ └── styles.ts │ ├── RocketseatIcon │ │ └── index.tsx │ ├── SideBar │ │ ├── index.tsx │ │ └── styles.ts │ ├── Tweet │ │ ├── index.tsx │ │ └── styles.ts │ └── TwitterIcon │ │ └── index.tsx ├── index.tsx ├── react-app-env.d.ts └── styles │ ├── GlobalStyles.ts │ └── Icons.ts ├── tsconfig.json └── yarn.lock /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/Avatar/index.tsx -------------------------------------------------------------------------------- /src/components/Avatar/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/Avatar/styles.ts -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Feed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/Feed/index.tsx -------------------------------------------------------------------------------- /src/components/Feed/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/Feed/styles.ts -------------------------------------------------------------------------------- /src/components/FollowSuggestion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/FollowSuggestion/index.tsx -------------------------------------------------------------------------------- /src/components/FollowSuggestion/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/FollowSuggestion/styles.ts -------------------------------------------------------------------------------- /src/components/ImageContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/ImageContent/index.tsx -------------------------------------------------------------------------------- /src/components/ImageContent/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/ImageContent/styles.ts -------------------------------------------------------------------------------- /src/components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/Layout/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/Layout/styles.ts -------------------------------------------------------------------------------- /src/components/List/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/List/index.tsx -------------------------------------------------------------------------------- /src/components/List/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/List/styles.ts -------------------------------------------------------------------------------- /src/components/Main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/Main/index.tsx -------------------------------------------------------------------------------- /src/components/Main/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/Main/styles.ts -------------------------------------------------------------------------------- /src/components/MenuBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/MenuBar/index.tsx -------------------------------------------------------------------------------- /src/components/MenuBar/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/MenuBar/styles.ts -------------------------------------------------------------------------------- /src/components/News/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/News/index.tsx -------------------------------------------------------------------------------- /src/components/News/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/News/styles.ts -------------------------------------------------------------------------------- /src/components/ProfilePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/ProfilePage/index.tsx -------------------------------------------------------------------------------- /src/components/ProfilePage/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/ProfilePage/styles.ts -------------------------------------------------------------------------------- /src/components/RocketseatIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/RocketseatIcon/index.tsx -------------------------------------------------------------------------------- /src/components/SideBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/SideBar/index.tsx -------------------------------------------------------------------------------- /src/components/SideBar/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/SideBar/styles.ts -------------------------------------------------------------------------------- /src/components/Tweet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/Tweet/index.tsx -------------------------------------------------------------------------------- /src/components/Tweet/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/Tweet/styles.ts -------------------------------------------------------------------------------- /src/components/TwitterIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/components/TwitterIcon/index.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/styles/GlobalStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/styles/GlobalStyles.ts -------------------------------------------------------------------------------- /src/styles/Icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/src/styles/Icons.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisesoares/clone-ui-twitter/HEAD/yarn.lock --------------------------------------------------------------------------------