stub options and applier components
This commit is contained in:
parent
6c1b71a009
commit
0bc6a93bf1
5 changed files with 22 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import './App.css';
|
import './App.css';
|
||||||
|
import PhonoChangeApplier from './PhonoChangeApplier';
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
|
@ -7,6 +8,7 @@ function App() {
|
||||||
<header className="App-header">
|
<header className="App-header">
|
||||||
Phono Change Applier
|
Phono Change Applier
|
||||||
</header>
|
</header>
|
||||||
|
<PhonoChangeApplier />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
10
src/PhonoChangeApplier.js
Normal file
10
src/PhonoChangeApplier.js
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import React from 'react';
|
||||||
|
import './PhonoChangeApplier.scss';
|
||||||
|
|
||||||
|
const PhonoChangeApplier = () => {
|
||||||
|
return (<>
|
||||||
|
|
||||||
|
</>);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default PhonoChangeApplier;
|
0
src/PhonoChangeApplier.scss
Normal file
0
src/PhonoChangeApplier.scss
Normal file
10
src/components/Options.js
Normal file
10
src/components/Options.js
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import React from 'react';
|
||||||
|
import './Options.scss';
|
||||||
|
|
||||||
|
const Options = () => {
|
||||||
|
return (<>
|
||||||
|
|
||||||
|
</>);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Options;
|
0
src/components/Options.scss
Normal file
0
src/components/Options.scss
Normal file
Loading…
Reference in a new issue