Apply prettier config

This commit is contained in:
Leonid Logvinov
2017-12-22 15:05:32 +01:00
parent 9a96e8c704
commit e744e4cd98
284 changed files with 6783 additions and 6205 deletions

View File

@@ -1,6 +1,6 @@
import * as _ from 'lodash';
import * as React from 'react';
import {EnumValue} from 'ts/types';
import { EnumValue } from 'ts/types';
interface EnumProps {
values: EnumValue[];
@@ -14,8 +14,8 @@ export function Enum(props: EnumProps) {
return (
<span>
{`{`}
{values}
<br />
{values}
<br />
{`}`}
</span>
);