Skip to content

Commit 9503ff4

Browse files
committed
Cleanup
1 parent b92d229 commit 9503ff4

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

template/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
* @format
33
*/
44

5-
import {AppRegistry} from 'react-native';
6-
import App from './App';
7-
import {name as appName} from './app.json';
8-
import {store} from './src/app/store';
9-
import {Provider} from 'react-redux';
10-
import React from 'react';
5+
import { AppRegistry } from "react-native";
6+
import App from "./App";
7+
import { name as appName } from "./app.json";
8+
import { store } from "./src/app/store";
9+
import { Provider } from "react-redux";
10+
import React from "react";
1111

1212
AppRegistry.registerComponent(appName, () => () => (
1313
<Provider store={store}>

template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "TestApp",
2+
"name": "HelloWorld",
33
"version": "0.0.1",
44
"private": true,
55
"scripts": {

template/src/features/counter/counterSlice.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export const counterSlice = createSlice({
1414
initialState,
1515
reducers: {
1616
increment: (state) => {
17-
console.log('What?');
1817
// Redux Toolkit allows us to write "mutating" logic in reducers. It
1918
// doesn't actually mutate the state because it uses the Immer library,
2019
// which detects changes to a "draft state" and produces a brand new

0 commit comments

Comments
 (0)