From 23591a1a7f494453faa5781f0265c58ac7c56332 Mon Sep 17 00:00:00 2001 From: Andrew Watkins Date: Wed, 28 Mar 2018 10:43:49 -0700 Subject: [PATCH] Remove From.tsx --- ui/src/ifql/components/From.tsx | 99 --------------------------------- 1 file changed, 99 deletions(-) delete mode 100644 ui/src/ifql/components/From.tsx diff --git a/ui/src/ifql/components/From.tsx b/ui/src/ifql/components/From.tsx deleted file mode 100644 index ccd2588ad..000000000 --- a/ui/src/ifql/components/From.tsx +++ /dev/null @@ -1,99 +0,0 @@ -import React, {PureComponent} from 'react' - -const obj = { - type: 'CallExpression', - location: { - start: { - line: 1, - column: 1, - }, - end: { - line: 1, - column: 21, - }, - source: 'from(db: "telegraf")', - }, - callee: { - type: 'Identifier', - location: { - start: { - line: 1, - column: 1, - }, - end: { - line: 1, - column: 5, - }, - source: 'from', - }, - name: 'from', - }, - arguments: [ - { - type: 'ObjectExpression', - location: { - start: { - line: 1, - column: 6, - }, - end: { - line: 1, - column: 20, - }, - source: 'db: "telegraf"', - }, - properties: [ - { - type: 'Property', - location: { - start: { - line: 1, - column: 6, - }, - end: { - line: 1, - column: 20, - }, - source: 'db: "telegraf"', - }, - key: { - type: 'Identifier', - location: { - start: { - line: 1, - column: 6, - }, - end: { - line: 1, - column: 8, - }, - source: 'db', - }, - name: 'db', - }, - value: { - type: 'StringLiteral', - location: { - start: { - line: 1, - column: 10, - }, - end: { - line: 1, - column: 20, - }, - source: '"telegraf"', - }, - value: 'telegraf', - }, - }, - ], - }, - ], -} - -interface FromNode {} - -interface Props {} - -class From extends PureComponent {}