SingleTweet의 인자를 구조 분해 할당하여 받아왔다.

const obj = { writer: 'sojeong', text: 'hello world' }

{writer, text} = obj;

// writer = 'sojeong'
// text = 'hello world'
// 출력된다.