@@ -97,10 +97,10 @@ const Intro = () => {
9797 href = "/generate/"
9898 alt = "CSV Generate package"
9999 onMouseEnter = { ( e ) =>
100- generateRef . current . style [ 'fill-opacity' ] = .4
100+ ( generateRef . current . style [ 'fill-opacity' ] = 0.4 )
101101 }
102102 onMouseLeave = { ( e ) =>
103- generateRef . current . style [ 'fill-opacity' ] = .2
103+ ( generateRef . current . style [ 'fill-opacity' ] = 0.2 )
104104 }
105105 >
106106 < g >
@@ -149,7 +149,7 @@ const Intro = () => {
149149 < g transform = "matrix(1,0,0,1,516,430.459)" >
150150 < text
151151 style = { {
152- fontFamily : " Fira Mono" ,
152+ fontFamily : ' Fira Mono' ,
153153 fontWeight : '400' ,
154154 fontSize : '30px' ,
155155 fontStyle : 'normal' ,
@@ -167,10 +167,10 @@ const Intro = () => {
167167 href = "/parse/"
168168 alt = "CSV Parse package"
169169 onMouseEnter = { ( e ) =>
170- parseRef . current . style [ 'fill-opacity' ] = .4
170+ ( parseRef . current . style [ 'fill-opacity' ] = 0.4 )
171171 }
172172 onMouseLeave = { ( e ) =>
173- parseRef . current . style [ 'fill-opacity' ] = .2
173+ ( parseRef . current . style [ 'fill-opacity' ] = 0.2 )
174174 }
175175 >
176176 < g >
@@ -220,7 +220,7 @@ const Intro = () => {
220220 < text
221221 style = { {
222222 textAlign : 'center' ,
223- fontFamily : " Fira Mono" ,
223+ fontFamily : ' Fira Mono' ,
224224 fontWeight : '400' ,
225225 fontSize : '30px' ,
226226 fontStyle : 'normal' ,
@@ -238,10 +238,10 @@ const Intro = () => {
238238 href = "/transform/"
239239 alt = "Stream Transform package"
240240 onMouseEnter = { ( e ) =>
241- transformRef . current . style [ 'fill-opacity' ] = .4
241+ ( transformRef . current . style [ 'fill-opacity' ] = 0.4 )
242242 }
243243 onMouseLeave = { ( e ) =>
244- transformRef . current . style [ 'fill-opacity' ] = .2
244+ ( transformRef . current . style [ 'fill-opacity' ] = 0.2 )
245245 }
246246 >
247247 < g >
@@ -290,7 +290,7 @@ const Intro = () => {
290290 < g transform = "matrix(1,0,0,1,881,501)" >
291291 < text
292292 style = { {
293- fontFamily : " Fira Mono" ,
293+ fontFamily : ' Fira Mono' ,
294294 fontWeight : '400' ,
295295 fontSize : '30px' ,
296296 fontStyle : 'normal' ,
@@ -308,10 +308,10 @@ const Intro = () => {
308308 href = "/stringify/"
309309 alt = "CSV Stringify package"
310310 onMouseEnter = { ( e ) =>
311- stringifyRef . current . style [ 'fill-opacity' ] = .4
311+ ( stringifyRef . current . style [ 'fill-opacity' ] = 0.4 )
312312 }
313313 onMouseLeave = { ( e ) =>
314- stringifyRef . current . style [ 'fill-opacity' ] = .2
314+ ( stringifyRef . current . style [ 'fill-opacity' ] = 0.2 )
315315 }
316316 >
317317 < g >
@@ -360,7 +360,7 @@ const Intro = () => {
360360 < g transform = "matrix(1,0,0,1,1083,556.117)" >
361361 < text
362362 style = { {
363- fontFamily : " Fira Mono" ,
363+ fontFamily : ' Fira Mono' ,
364364 fontWeight : '400' ,
365365 fontSize : '30px' ,
366366 fontStyle : 'normal' ,
@@ -381,9 +381,8 @@ const Intro = () => {
381381 < div css = { styles . headline } >
382382 < p >
383383 Comprehensive CSV suite combining 4 well tested packages to{ ' ' }
384- < Link to = "/generate/" > generate</ Link > ,{ ' ' }
385- < Link to = "/parse/" > parse</ Link > ,{ ' ' }
386- < Link to = "/transform/" > transform</ Link > and{ ' ' }
384+ < Link to = "/generate/" > generate</ Link > , < Link to = "/parse/" > parse</ Link >
385+ , < Link to = "/transform/" > transform</ Link > and{ ' ' }
387386 < Link to = "/stringify/" > stringify</ Link > CSV data.
388387 </ p >
389388 </ div >
0 commit comments