Normalise trailing whitespace and line endings everywhere

This commit is contained in:
SteveSandersonMS
2016-03-01 01:10:43 +00:00
parent c425137423
commit 74cac774f8
174 changed files with 782 additions and 783 deletions

View File

@@ -9,19 +9,19 @@ export class Counter extends React.Component<any, CounterState> {
super();
this.state = { currentCount: 0 };
}
public render() {
return <div>
<h1>Counter</h1>
<p>This is a simple example of a React component.</p>
<p>Current count: <strong>{ this.state.currentCount }</strong></p>
<button onClick={ () => { this.incrementCounter() } }>Increment</button>
</div>;
}
incrementCounter() {
this.setState({
currentCount: this.state.currentCount + 1

View File

@@ -7,7 +7,7 @@ interface FetchDataExampleState {
export class FetchData extends React.Component<any, FetchDataExampleState> {
constructor() {
super();
super();
this.state = { forecasts: [], loading: true };
fetch('/api/SampleData/WeatherForecasts')
@@ -21,7 +21,7 @@ export class FetchData extends React.Component<any, FetchDataExampleState> {
let contents = this.state.loading
? <p><em>Loading...</em></p>
: FetchData.renderForecastsTable(this.state.forecasts);
return <div>
<h1>Weather forecast</h1>
<p>This component demonstrates fetching data from the server.</p>

View File

@@ -7,7 +7,7 @@ export class Home extends React.Component<any, void> {
<p>Welcome to your new single-page application, built with:</p>
<ul>
<li><a href='https://get.asp.net/'>ASP.NET Core</a> and <a href='https://msdn.microsoft.com/en-us/library/67ef8sbd.aspx'>C#</a> for cross-platform server-side code</li>
<li><a href='https://facebook.github.io/react/'>React</a> and <a href='http://www.typescriptlang.org/'>TypeScript</a> for client-side code</li>
<li><a href='https://facebook.github.io/react/'>React</a> and <a href='http://www.typescriptlang.org/'>TypeScript</a> for client-side code</li>
<li><a href='https://webpack.github.io/'>Webpack</a> for building and bundling client-side resources</li>
<li><a href='http://getbootstrap.com/'>Bootstrap</a> for layout and styling</li>
</ul>

View File

@@ -7,7 +7,7 @@ export interface LayoutProps {
export class Layout extends React.Component<LayoutProps, void> {
public render() {
return <div className='container-fluid'>
return <div className='container-fluid'>
<div className='row'>
<div className='col-sm-3'>
<NavMenu />

View File

@@ -3,7 +3,7 @@ import { Link } from 'react-router';
export class NavMenu extends React.Component<any, void> {
public render() {
return <div className='main-nav'>
return <div className='main-nav'>
<div className='navbar navbar-inverse'>
<div className='navbar-header'>
<button type='button' className='navbar-toggle' data-toggle='collapse' data-target='.navbar-collapse'>