import React, { Component } from 'react'; import { TextField, Typography } from '@material-ui/core'; export default class CreateParameter extends Component { render() { let { type } = this.props return type === 'edit' ? this.renderEdit() : this.renderCreate() } renderEdit() { return (
Ubah Data
null} inputProps={{ style: { fontSize: 11 } }} InputLabelProps={{ style: { fontSize: 11, color: '#7e8085' } }} >
Dibuat : Admin - 21 Jul 2020, 18:45 Diubah : Admin - 21 Jul 2020, 18:45
Batal
Simpan
) } renderCreate() { return (
Create Data
null} inputProps={{ style: { fontSize: 11 } }} InputLabelProps={{ style: { fontSize: 11, color: '#7e8085' } }} >
Dibuat : Admin - 21 Jul 2020, 18:45 Diubah : Admin - 21 Jul 2020, 18:45
Batal
Simpan
) } }