├── material ├── dir │ ├── books.md │ ├── events.md │ ├── sites.md │ ├── newsletters.md │ ├── communities.md │ └── courses.md ├── agenda │ └── README.md ├── minutes │ └── README.md ├── roadmap.md └── README.md ├── LICENSE ├── README.md └── assets └── training-center-logo.svg /material/dir/books.md: -------------------------------------------------------------------------------- 1 | # Livros sobre react -------------------------------------------------------------------------------- /material/dir/events.md: -------------------------------------------------------------------------------- 1 | # Eventos de react -------------------------------------------------------------------------------- /material/dir/sites.md: -------------------------------------------------------------------------------- 1 | # Sites sobre react -------------------------------------------------------------------------------- /material/agenda/README.md: -------------------------------------------------------------------------------- 1 | # Pautas das reuniões -------------------------------------------------------------------------------- /material/minutes/README.md: -------------------------------------------------------------------------------- 1 | # Ata das reuniões -------------------------------------------------------------------------------- /material/roadmap.md: -------------------------------------------------------------------------------- 1 | # Roadmap de estudos sobre react -------------------------------------------------------------------------------- /material/dir/newsletters.md: -------------------------------------------------------------------------------- 1 | # Listas de email sobre react -------------------------------------------------------------------------------- /material/dir/communities.md: -------------------------------------------------------------------------------- 1 | # Comunidades de react 2 | - [React Brasil](https://github.com/react-brasil) 3 | - [React JS Brasil Telegram](https://t.me/reactjs_br) -------------------------------------------------------------------------------- /material/README.md: -------------------------------------------------------------------------------- 1 | ## Material de apoio ao grupo de estudos de react 2 | 3 | - [livros](dir/books.md) 4 | - [comunidades](dir/communities.md) 5 | - [cursos](dir/courses.md) 6 | - [eventos](dir/events.md) 7 | - [newsletters](dir/newsletters.md) 8 | - [sites](dir/sites.md) 9 | -------------------------------------------------------------------------------- /material/dir/courses.md: -------------------------------------------------------------------------------- 1 | # Cursos de react 2 | ### Gratuitos 3 | 4 | - Básico 5 | - [The Beginner's Guide to React](https://egghead.io/courses/the-beginner-s-guide-to-react) 6 | 7 | ### Pagos 8 | 9 | - Básico ao Avançado 10 | - [Curso React.js Ninja - React Completo](https://www.udemy.com/curso-reactjs-ninja/) -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Training Center 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Repositório do grupo de estudos sobre react do [Training Center](https://training-center.github.io). 2 | 3 |
4 |
5 |