2021-05-20 22:00:46 +00:00
|
|
|
import React from 'react';
|
|
|
|
import AdminBox from '@/components/admin/AdminBox';
|
2021-09-17 21:40:17 +00:00
|
|
|
import { Egg } from '@/api/admin/eggs/getEgg';
|
2021-05-20 22:00:46 +00:00
|
|
|
|
2021-09-17 21:40:17 +00:00
|
|
|
export default ({ egg }: { egg: Egg }) => {
|
2021-05-20 22:00:46 +00:00
|
|
|
return (
|
|
|
|
<AdminBox title={'Variables'}>
|
2021-09-17 21:40:17 +00:00
|
|
|
{egg.name}
|
2021-05-20 22:00:46 +00:00
|
|
|
</AdminBox>
|
|
|
|
);
|
|
|
|
};
|