forked from ddrilling/asb_cloud_front
19 lines
504 B
React
19 lines
504 B
React
|
let date = new Date().toLocaleString()
|
|||
|
|
|||
|
|
|||
|
export default function Disposition() {
|
|||
|
return (
|
|||
|
<>
|
|||
|
<h1 style={{textAlign: "center"}}>Распоряжение</h1>
|
|||
|
|
|||
|
<p style={{textAlign: "justify"}}>
|
|||
|
Текст
|
|||
|
</p>
|
|||
|
|
|||
|
<p style={{textAlign: "right"}}><i>Ф.И.О.</i></p>
|
|||
|
<p style={{textAlign: "right"}}><i>Должность</i></p>
|
|||
|
<p style={{textAlign: "right"}}><i>Компания</i></p>
|
|||
|
<p style={{textAlign: "right"}}><b>{date}</b></p>
|
|||
|
</>
|
|||
|
)
|
|||
|
}
|