]> Untitled Git - lemmy-ui.git/blobdiff - src/shared/components/comment-nodes.tsx
Running newer prettier.
[lemmy-ui.git] / src / shared / components / comment-nodes.tsx
index 12d71ad1582236d35929fd034133bde3c6238e07..fd5994a007a7158ffd53ddeb5c9976c4c1e0d503 100644 (file)
@@ -1,7 +1,7 @@
-import { Component } from 'inferno';
-import { CommentNode as CommentNodeI } from '../interfaces';
-import { CommunityModeratorView, UserViewSafe } from 'lemmy-js-client';
-import { CommentNode } from './comment-node';
+import { Component } from "inferno";
+import { CommentNode as CommentNodeI } from "../interfaces";
+import { CommunityModeratorView, UserViewSafe } from "lemmy-js-client";
+import { CommentNode } from "./comment-node";
 
 interface CommentNodesProps {
   nodes: CommentNodeI[];
@@ -18,10 +18,7 @@ interface CommentNodesProps {
   enableDownvotes: boolean;
 }
 
-export class CommentNodes extends Component<
-  CommentNodesProps,
-  any
-> {
+export class CommentNodes extends Component<CommentNodesProps, any> {
   constructor(props: any, context: any) {
     super(props, context);
   }