stub components

This commit is contained in:
Sorrel Bri 2019-11-25 21:08:28 -08:00
parent 82cb0f8a65
commit 6c1b71a009
9 changed files with 40 additions and 1 deletions

View file

@ -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
View file

@ -0,0 +1,10 @@
import React from 'react';
import './Epochs.scss';
const Epochs = () => {
return (<>
</>);
}
export default Epochs;

View file

View file

@ -0,0 +1,10 @@
import React from 'react';
import './Features.scss';
const Features = () => {
return (<>
</>);
}
export default Features;

View file

10
src/components/Output.js Normal file
View file

@ -0,0 +1,10 @@
import React from 'react';
import './Output.scss';
const Output = () => {
return (<>
</>);
}
export default Output;

View file

View file

@ -0,0 +1,10 @@
import React from 'react';
import './ProtoLang.scss';
const ProtoLang = () => {
return (<>
</>);
}
export default ProtoLang;

View file