Skip to content

Commit bebfdff

Browse files
committed
single quotes
1 parent 4954d55 commit bebfdff

File tree

2 files changed

+8
-8
lines changed
  • template

2 files changed

+8
-8
lines changed

template/default/example/src/App.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import React, { Component } from "react";
2-
import "./App.css";
1+
import React, { Component } from 'react';
2+
import './App.css';
33

4-
import ExampleComponent from "{{name}}";
4+
import ExampleComponent from '{{name}}';
55

66
class App extends Component {
77
render() {
8-
return <ExampleComponent text="Modern React component module" />;
8+
return <ExampleComponent text='Modern React component module' />;
99
}
1010
}
1111

template/typescript/example/src/App.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import React, { Component } from "react";
2-
import "./App.css";
1+
import React, { Component } from 'react';
2+
import './App.css';
33

4-
import ExampleComponent from "{{name}}";
4+
import ExampleComponent from '{{name}}';
55

66
class App extends Component {
77
render() {
8-
return <ExampleComponent text="Modern React component module" />;
8+
return <ExampleComponent text='Modern React component module' />;
99
}
1010
}
1111

0 commit comments

Comments
 (0)