mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-31 13:02:38 +00:00
basic styles
This commit is contained in:
@@ -1,11 +1,35 @@
|
||||
import React from "react";
|
||||
|
||||
import './newDocumentForm.less';
|
||||
|
||||
export function NewDocumentForm() {
|
||||
|
||||
return (
|
||||
<div>
|
||||
Hello
|
||||
return <>
|
||||
<nav>
|
||||
<button>templates</button>
|
||||
<button>import</button>
|
||||
<button>clone</button>
|
||||
</nav>
|
||||
<div className="content">
|
||||
<div className="templates">
|
||||
<div className="template a4"><div className="image"></div><span>A4</span></div>
|
||||
<div className="template a5"><div className="image"></div><span>A5</span></div>
|
||||
<div className="template a4"><div className="image"></div><span>A4</span></div>
|
||||
<div className="template a5"><div className="image"></div><span>A5</span></div>
|
||||
<div className="template a4"><div className="image"></div><span>A4</span></div>
|
||||
<div className="template a5"><div className="image"></div><span>A5</span></div>
|
||||
</div>
|
||||
);
|
||||
<div className="metadataPanel">
|
||||
<div className="fieldGroup">
|
||||
<label>title</label>
|
||||
<input type='text'
|
||||
defaultValue=''
|
||||
placeholder='title'
|
||||
className='title'
|
||||
onChange={(e)=>{}} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</>
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user