mirror of
https://github.com/strapi/strapi.git
synced 2025-10-09 07:13:14 +00:00
12 lines
183 B
JavaScript
12 lines
183 B
JavaScript
import React from 'react';
|
|
|
|
const Test = () => {
|
|
return (
|
|
<section style={{ textAlign: 'center' }}>
|
|
<h1>Admin EE version</h1>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default Test;
|