chore(learn): Merge learn in to the client app
This commit is contained in:
14
client/src/head/index.js
Normal file
14
client/src/head/index.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import favicons from './favicons';
|
||||
import meta from './meta';
|
||||
import mathjax from './mathjax';
|
||||
import sassjs from './sassjs';
|
||||
|
||||
const metaAndStyleSheets = meta
|
||||
.concat(favicons, mathjax, sassjs)
|
||||
.map((element, i) => ({
|
||||
...element,
|
||||
key: `meta-stylesheet-${i}`,
|
||||
props: { ...element.props, key: `meta-stylesheet-${i}` }
|
||||
}));
|
||||
|
||||
export default metaAndStyleSheets;
|
Reference in New Issue
Block a user