stub components
This commit is contained in:
parent
82cb0f8a65
commit
6c1b71a009
9 changed files with 40 additions and 1 deletions
|
@ -1,5 +1,4 @@
|
|||
import React from 'react';
|
||||
import logo from './logo.svg';
|
||||
import './App.css';
|
||||
|
||||
function App() {
|
||||
|
|
10
src/components/Epochs.js
Normal file
10
src/components/Epochs.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import React from 'react';
|
||||
import './Epochs.scss';
|
||||
|
||||
const Epochs = () => {
|
||||
return (<>
|
||||
|
||||
</>);
|
||||
}
|
||||
|
||||
export default Epochs;
|
0
src/components/Epochs.scss
Normal file
0
src/components/Epochs.scss
Normal file
10
src/components/Features.js
Normal file
10
src/components/Features.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import React from 'react';
|
||||
import './Features.scss';
|
||||
|
||||
const Features = () => {
|
||||
return (<>
|
||||
|
||||
</>);
|
||||
}
|
||||
|
||||
export default Features;
|
0
src/components/Features.scss
Normal file
0
src/components/Features.scss
Normal file
10
src/components/Output.js
Normal file
10
src/components/Output.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import React from 'react';
|
||||
import './Output.scss';
|
||||
|
||||
const Output = () => {
|
||||
return (<>
|
||||
|
||||
</>);
|
||||
}
|
||||
|
||||
export default Output;
|
0
src/components/Output.scss
Normal file
0
src/components/Output.scss
Normal file
10
src/components/ProtoLang.js
Normal file
10
src/components/ProtoLang.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import React from 'react';
|
||||
import './ProtoLang.scss';
|
||||
|
||||
const ProtoLang = () => {
|
||||
return (<>
|
||||
|
||||
</>);
|
||||
}
|
||||
|
||||
export default ProtoLang;
|
0
src/components/ProtoLang.scss
Normal file
0
src/components/ProtoLang.scss
Normal file
Loading…
Reference in a new issue