Skip to content

Commit

Permalink
react login e styled
Browse files Browse the repository at this point in the history
  • Loading branch information
lucenarenato committed Mar 12, 2020
0 parents commit 4899ca9
Show file tree
Hide file tree
Showing 40 changed files with 22,933 additions and 0 deletions.
Empty file added .env.test.local
Empty file.
4 changes: 4 additions & 0 deletions .eslintrc.js
@@ -0,0 +1,4 @@
module.exports = {
root: true,
extends: '@react-native-community',
};
22 changes: 22 additions & 0 deletions .gitignore
@@ -0,0 +1,22 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
6 changes: 6 additions & 0 deletions .prettierrc.js
@@ -0,0 +1,6 @@
module.exports = {
bracketSpacing: false,
jsxBracketSameLine: true,
singleQuote: true,
trailingComma: 'all',
};
3 changes: 3 additions & 0 deletions .vscode/settings.json
@@ -0,0 +1,3 @@
{
"git.ignoreLimitWarning": true
}
58 changes: 58 additions & 0 deletions README.md
@@ -0,0 +1,58 @@
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

# react-styled-components
## [Front-End] React - Estilizando componentes com Styled Components

Projeto de exemplo para gravar video explicando como estilizar componentes com Styled Components.

Assistir vídeo: [[Front-End] React - Estilizando componentes com Styled Components](https://www.youtube.com/watch?v=zNn255_BOvk)

![tela](captura.png)

## Available Scripts

In the project directory, you can run:

```sh
yarn install
yarn start

```

Runs the app in the development mode.<br>
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

The page will reload if you make edits.<br>
You will also see any lint errors in the console.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

### Code Splitting

This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting

### Analyzing the Bundle Size

This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size

### Making a Progressive Web App

This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app

### Advanced Configuration

This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration

### Deployment

This section has moved here: https://facebook.github.io/create-react-app/docs/deployment

### `npm run build` fails to minify

This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify

- Renato Lucena - 2020
11 changes: 11 additions & 0 deletions babel.config.js
@@ -0,0 +1,11 @@
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: [
[
'babel-plugin-root-import',
{
rootPathSuffix: 'src',
},
],
],
};
Binary file added captura.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions metro.config.js
@@ -0,0 +1,17 @@
/**
* Metro configuration for React Native
* https://github.com/facebook/react-native
*
* @format
*/

module.exports = {
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: false,
},
}),
},
};

0 comments on commit 4899ca9

Please sign in to comment.