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