rtgk-screen-web/components/screen/WithConfig/index.js

13 lines
196 B
JavaScript

import React from 'react';
import Head from 'next/head'
function WithConfig(props) {
return (
<Head>
<script src="/config.js"></script>
</Head>
);
}
export default WithConfig;