project files

This commit is contained in:
rahuldkjain
2020-07-15 16:53:44 +05:30
parent 78d19325a3
commit 3e570e1904
24 changed files with 19986 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
import React from 'react';
const Subtitle = (props) => {
return (
<div className="section">
<h3>Subtitle</h3>
<input id="subtitle" className="inputField lg prefix" value={props.data.subtitle}
onChange={event => props.handleDataChange('subtitle', event)} />
</div>
);
}
export default Subtitle;