stub options and applier components

This commit is contained in:
Sorrel Bri 2019-11-26 14:42:19 -08:00
parent 6c1b71a009
commit 0bc6a93bf1
5 changed files with 22 additions and 0 deletions

View file

@ -1,5 +1,6 @@
import React from 'react';
import './App.css';
import PhonoChangeApplier from './PhonoChangeApplier';
function App() {
return (
@ -7,6 +8,7 @@ function App() {
<header className="App-header">
Phono Change Applier
</header>
<PhonoChangeApplier />
</div>
);
}

10
src/PhonoChangeApplier.js Normal file
View file

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

View file

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

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

View file