File tree Expand file tree Collapse file tree 4 files changed +23
-9
lines changed Expand file tree Collapse file tree 4 files changed +23
-9
lines changed Original file line number Diff line number Diff line change 1+ // Import External Dependencies 
12import  React  from  'react' ; 
23import  PropTypes  from  'prop-types' ; 
34
5+ // Load Styling 
6+ import  '../Cube.scss' ; 
7+ 
48export  default  class  Cube  extends  React . Component  { 
59  static  propTypes  =  { 
610    hover : PropTypes . bool , 
Original file line number Diff line number Diff line change 1+ // Import External Dependencies 
12import  React  from  'react' ; 
2- import  Interactive  from  'antwar-interactive' ; 
3+ 
4+ // Import Components 
35import  Container  from  '../Container/Container' ; 
46import  SplashViz  from  '../SplashViz/SplashViz' ; 
57import  Support  from  '../Support/Support' ; 
8+ 
9+ // Load Styling 
610import  './Splash.scss' ; 
7- import  '../SplashViz/SplashViz.scss' ; 
8- import  '../Cube/Cube.scss' ; 
9- import  '../TextRotater/TextRotater.scss' ; 
1011
1112const  Splash  =  ( )  =>  ( 
1213  < div  className = "splash" > 
13-     < Interactive 
14-       id = "src/components/SplashViz/SplashViz.jsx" 
15-       component = {  SplashViz  }  /> 
14+     < SplashViz  /> 
1615
1716    < div  className = "splash__section splash__section--dark page__content" > 
1817      < Container > 
Original file line number Diff line number Diff line change 1+ // Import External Dependencies 
12import  React  from  'react' ; 
23
4+ // Load Images 
5+ import  HomeSVG  from  './SplashVizSVG' ; 
6+ 
7+ // Import Components 
38import  Cube  from  '../Cube/Cube' ; 
49import  TextRotator  from  '../TextRotater/TextRotater' ; 
5- import  homeSVG  from  './SplashVizSVG' ; 
10+ 
11+ // Load Styling 
12+ import  '../SplashViz.scss' ; 
613
714export  default  class  SplashViz  extends  React . Component  { 
815
@@ -18,7 +25,7 @@ export default class SplashViz extends React.Component {
1825            < span >  styles </ span > 
1926          </ TextRotator > 
2027        </ h1 > 
21-         < div  className = "splash-viz__modules"  dangerouslySetInnerHTML = { { __html : homeSVG . body } } > </ div > 
28+         < div  className = "splash-viz__modules"  dangerouslySetInnerHTML = { { __html : HomeSVG . body } } > </ div > 
2229        < Cube  className = "splash-viz__cube"  depth = {  120  }  repeatDelay = {  5000  }  continuous /> 
2330      </ section > 
2431    ) ; 
Original file line number Diff line number Diff line change 1+ // Import External Dependencies 
12import  React  from  'react' ; 
23import  PropTypes  from  'prop-types' ; 
34
5+ // Load Styling 
6+ import  '../TextRotater.scss' ; 
7+ 
48export  default  class  TextRotater  extends  React . PureComponent  { 
59  static  defaultProps  =  { 
610    delay : 0 , 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments