Skip to content

Commit 2a2067c

Browse files
Enable cc
1 parent f533eb0 commit 2a2067c

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

example-project/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import App from './views/app';
1515
const store = configureStore();
1616
const rootElement = document.getElementById('root');
1717

18-
//c2c:#layout#0;start;provider
18+
//cc:#layout#0;start;provider
1919
function render(Component) {
2020
ReactDOM.render(
2121
<Provider store={store}>

example-project/src/views/app/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import RequireUnauthRoute from '../components/require-unauth-route';
1010
import SignInPage from '../pages/sign-in';
1111
import TasksPage from '../pages/tasks';
1212

13-
//c2c:#layout#1;describe pages;provider
13+
//cc:#layout#1;describe pages;provider
1414
const App = ({authenticated, signOut}) => (
1515
<div>
1616
<Header

example-project/src/views/components/task-list/task-list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { List } from 'immutable';
33
import PropTypes from 'prop-types';
44
import TaskItem from '../task-item/task-item';
55

6-
//c2c:#layout#3;tasks list;
6+
//cc:#layout#3;tasks list;
77
function TaskList({removeTask, tasks, updateTask}) {
88
let taskItems = tasks.map((task, index) => {
99
return (

example-project/src/views/pages/tasks/tasks-page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import TaskFilters from '../../components/task-filters';
1111
import TaskForm from '../../components/task-form';
1212
import TaskList from '../../components/task-list';
1313

14-
//c2c:#layout#2;tasks page;provider
14+
//cc:#layout#2;tasks page;provider
1515
export class TasksPage extends Component {
1616
static propTypes = {
1717
createTask: PropTypes.func.isRequired,

0 commit comments

Comments
 (0)