mirror of
https://github.com/strapi/strapi.git
synced 2025-11-18 02:58:05 +00:00
18 lines
160 B
JavaScript
18 lines
160 B
JavaScript
|
|
/**
|
||
|
|
*
|
||
|
|
* EditView
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
import React from 'react';
|
||
|
|
|
||
|
|
function EditView() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<p>Edit</p>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default EditView;
|