Skip to content

Commit

Permalink
Add semicolons.
Browse files Browse the repository at this point in the history
  • Loading branch information
rickbeerendonk committed Jun 23, 2018
1 parent 1ba3105 commit 116f40c
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
const containerStyle = {
backgroundColor: 'lightgray',
padding: 10
}
};

const contentStyle = {
backgroundColor: 'white',
padding: 10
}
};

const Container = ({children}) => (
<div style={containerStyle}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
const containerStyle = {
backgroundColor: 'lightgray',
padding: 10
}
};

const contentStyle = {
backgroundColor: 'white',
padding: 10
}
};

const Container = props => (
<div style={containerStyle}>
Expand Down
4 changes: 2 additions & 2 deletions 21 - Transclusion - a. One/runtime/javascript/jsx/app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
const containerStyle = {
backgroundColor: 'lightgray',
padding: 10
}
};

const contentStyle = {
backgroundColor: 'white',
padding: 10
}
};

class Container extends React.Component {
render() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import React from 'react';
const containerStyle = {
backgroundColor: 'lightgray',
padding: 10
}
};

const contentStyle = {
backgroundColor: 'white',
padding: 10
}
};

const Container = ({children}) => (
<div style={containerStyle}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import React from 'react';
const containerStyle = {
backgroundColor: 'lightgray',
padding: 10
}
};

const contentStyle = {
backgroundColor: 'white',
padding: 10
}
};

const Container = props => (
<div style={containerStyle}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import React from 'react';
const containerStyle = {
backgroundColor: 'lightgray',
padding: 10
}
};

const contentStyle = {
backgroundColor: 'white',
padding: 10
}
};

export default class Container extends React.Component {
render() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
const containerStyle = {
backgroundColor: 'lightgray',
padding: 10
}
};

const contentStyle = {
backgroundColor: 'white',
padding: 10
}
};

const Container = ({slot1, slot2}) => (
<div style={containerStyle}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
const containerStyle = {
backgroundColor: 'lightgray',
padding: 10
}
};

const contentStyle = {
backgroundColor: 'white',
padding: 10
}
};

const Container = props => (
<div style={containerStyle}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
const containerStyle = {
backgroundColor: 'lightgray',
padding: 10
}
};

const contentStyle = {
backgroundColor: 'white',
padding: 10
}
};

class Container extends React.Component {
render() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import React from 'react';
const containerStyle = {
backgroundColor: 'lightgray',
padding: 10
}
};

const contentStyle = {
backgroundColor: 'white',
padding: 10
}
};

const Container = ({slot1, slot2}) => (
<div style={containerStyle}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import React from 'react';
const containerStyle = {
backgroundColor: 'lightgray',
padding: 10
}
};

const contentStyle = {
backgroundColor: 'white',
padding: 10
}
};

const Container = props => (
<div style={containerStyle}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import React from 'react';
const containerStyle = {
backgroundColor: 'lightgray',
padding: 10
}
};

const contentStyle = {
backgroundColor: 'white',
padding: 10
}
};

export default class Container extends React.Component {
render() {
Expand Down

0 comments on commit 116f40c

Please sign in to comment.