-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Closed
Labels
DuplicateAn existing issue was already createdAn existing issue was already created
Description
From @prencher on December 3, 2015 20:0
When formatting the following snippet:
ReactDOM.render(
<Router history={createHistory() }>
<Route path='/' component={App}>
<IndexRoute component={SplashView} />
<Route path='home' component={HomeView} />
<Route path='chat' component={ChatView} />
<Route path='/chat/:contact' component={ChatView} />
</Route>
</Router>,
document.getElementById('app')
);
The closing tags are not properly unindented, and outputs the following:
ReactDOM.render(
<Router history={createHistory() }>
<Route path='/' component={App}>
<IndexRoute component={SplashView} />
<Route path='home' component={HomeView} />
<Route path='chat' component={ChatView} />
<Route path='/chat/:contact' component={ChatView} />
</Route>
</Router>,
document.getElementById('app')
);
Copied from original issue: microsoft/vscode#985
Metadata
Metadata
Assignees
Labels
DuplicateAn existing issue was already createdAn existing issue was already created