13 lines
196 B
JavaScript
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;
|