export const area = (r) => Math.PI * r ** 2; export const circumference = (r) => 2 * Math.PI * r; export default { area, circumference }