mirror of
https://github.com/bendtherules/ts-transformer-visualizer.git
synced 2026-08-18 22:01:45 +00:00
src, example - Formatr all files using prettier
This commit is contained in:
+5
-5
@@ -1,13 +1,13 @@
|
||||
import React, { Component } from 'react'
|
||||
import React, { Component } from "react";
|
||||
|
||||
import ExampleComponent from 'ts-transformer-visualizer'
|
||||
import ExampleComponent from "ts-transformer-visualizer";
|
||||
|
||||
export default class App extends Component {
|
||||
render () {
|
||||
render() {
|
||||
return (
|
||||
<div>
|
||||
<ExampleComponent text='Modern React component module' />
|
||||
<ExampleComponent text="Modern React component module" />
|
||||
</div>
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import React from 'react'
|
||||
import ReactDOM from 'react-dom'
|
||||
import React from "react";
|
||||
import ReactDOM from "react-dom";
|
||||
|
||||
import './index.css'
|
||||
import App from './App'
|
||||
import "./index.css";
|
||||
import App from "./App";
|
||||
|
||||
ReactDOM.render(<App />, document.getElementById('root'))
|
||||
ReactDOM.render(<App />, document.getElementById("root"));
|
||||
|
||||
Reference in New Issue
Block a user