File tree Expand file tree Collapse file tree 1 file changed +17
-4
lines changed
src/homepageExperience/components/steps/cli Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change 22import React , { useEffect , useState } from 'react'
33
44// Components
5- import { Button , ButtonGroup , ComponentColor } from '@influxdata/clockface'
5+ import {
6+ Button ,
7+ ButtonGroup ,
8+ ComponentColor ,
9+ InfluxColors ,
10+ Panel ,
11+ } from '@influxdata/clockface'
612import CodeSnippet from 'src/shared/components/CodeSnippet'
713import DataListening from 'src/homepageExperience/components/DataListening'
814import { SafeBlankLink } from 'src/utils/SafeBlankLink'
@@ -134,8 +140,11 @@ export const WriteDataComponent = (props: OwnProps) => {
134140 Once the data is finished writing, you will see a confirmation
135141 below.
136142 </ p >
137- < DataListening bucket = { bucketName } />
138-
143+ < Panel backgroundColor = { InfluxColors . Grey15 } >
144+ < Panel . Body >
145+ < DataListening bucket = { bucketName } />
146+ </ Panel . Body >
147+ </ Panel >
139148 < h2 > Review data concepts</ h2 >
140149 < p >
141150 < b > Field (required)</ b > < br />
@@ -197,7 +206,11 @@ export const WriteDataComponent = (props: OwnProps) => {
197206 Once the data is finished writing, you will see a confirmation
198207 below.
199208 </ p >
200- < DataListening bucket = { bucketName } />
209+ < Panel backgroundColor = { InfluxColors . Grey15 } >
210+ < Panel . Body >
211+ < DataListening bucket = { bucketName } />
212+ </ Panel . Body >
213+ </ Panel >
201214 < h2 > Review data concepts</ h2 >
202215 < p >
203216 < b > Field (required)</ b > < br />
You can’t perform that action at this time.
0 commit comments