import './photo.scss';
export function Photo({src,deg}){
    return <div className="photo" style={{backgroundImage: `url("${src}")`,transform: `rotate(${deg}deg)`}} />
}