This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Mapping size to number of units | |
type_to_capacity = { | |
"Large": 10, | |
"XLarge": 20, | |
"2XLarge": 40, | |
"4XLarge": 80, | |
"8XLarge": 160, | |
"10XLarge": 320, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from 'react'; | |
import { useParams } from 'react-router-dom'; | |
import BlogPostPage from '../pages/BlogPostPage'; | |
import SimpleList from '../components/Recommendation'; | |
import { | |
Container, | |
Grid, | |
Typography | |
} from '@material-ui/core'; |